Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm learning Angular's Change Detection and created an example with the OnPush strategy.

In the parent component I'm mutating an object and triggering the CD:

  public updateCustomerArray1() {
    this.customers1[0].firstName = "Andreas 1 - changed";
    this.cd.markForCheck();
    this.cd.detectChanges();
    this.app.tick();
  }
 <app-child1 [customers]="customers1"></app-child1>

but the change is not propagated to the child components. Why?

https://github.com/ILoveITScience/AngularChangeDetection/tree/master/ChangeDetectionOnPush/src/app

PS: I know I should not mutate objects but create new once. But I would like to understand why the CD does not work here.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.9k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...