Angular - Change Detection
You wrote this code but Angular does not update the UI after the async task:
What is the problem?
this.zone.runOutsideAngular(() => {
fetch('/data').then(() => {
this.data = 'loaded';
});
});What is the problem?
