, . , ngDoCheck , - , . .
ngDoCheck , . , , . , Angular @Input , ngDoCheck . :
Component({
...,
changeDetection: ChangeDetectionStrategy.OnPush
})
MyComponent {
@Input() items;
prevLength;
constructor(cd: ChangeDetectorRef) {}
ngOnInit() {
this.prevLength = this.items.length;
}
ngDoCheck() {
if (this.items.length !== this.prevLength) {
this.cd.markForCheck();
}
}
, ngDoCheck OnPush. .
, ngAfterViewChecked , . .
, Angular, Exploring the implications. , .
ngDoCheck.