in Angular by (6.5k points)
If your data model is updated outside the ‘Zone’, explain the process how will you the view?

1 Answer

0 votes
by (31.6k points)

You can update your view using any of the following:

ApplicationRef.prototype.tick(): It will perform change detection on the complete component tree.

NgZone.prototype.run(): It will perform the change detection on the entire component tree. Here, the run() under the hood will call the tick itself and then parameter will take the function before tick and executes it.

ChangeDetectorRef.prototype.detectChanges(): It will launch the change detection on the current component and its children.

Related questions

0 votes
asked Sep 3, 2022 in Ruby by DavidAnderson (9.0k points)
...