angulartypescriptasynchronousangular9zonejs

The same data is displayed differently in angular9.why?


In the following example, the

e.g.

two
1588950994873

Why is this the case?

import { Component } from "@angular/core";

@Component({
  selector: "my-app",
  template: `
    What is different and why?
    <br />
    {{ bar }} <br />
    {{ "" + bar }} <br />
  `
})
export class AppComponent {
  value: string = "default";

  bar: any = d => {
    this.value = d;
  };

  ngOnInit() {
    this.bar.valueOf = () => this.value;
    this.bar("one");
    setInterval(() => this.bar(Date.now() + ""), 1000);
    this.bar("two");
  }
}

Stackblitz example


Solution

  • The reason why is that angular change detection works by comparing the instance of an expression: