标签: angular
在我在Thoughtram博客中找到的this plunkr中,我可以看到AppComponent(父级)和BoxComponent(子级)在视图初始化后都脱离了变更检测器:>
AppComponent
BoxComponent
ngAfterViewInit() { this.changeDetectorRef.detach(); }
但是我不明白,因为更改检测是从父级到子级进行的,仅在父级上调用分离还不够吗?