top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

In Angular, What is Change Detection? How changes happening between view and controller?

0 votes
300 views
In Angular, What is Change Detection? How changes happening between view and controller?
posted Jan 26, 2018 by Sandeep Bedi

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

The Angular change detection mechanism is much more transparent and easier to reason about than its equivalent in Angular 1.
Angular can detect when component data changes, and then automatically re-render the view to reflect that change.
Each Angular component has an associated change detector, which is created at application startup time.

answer Apr 27, 2018 by Kuldeep Apte
...