Angular中组件之间关系树结构图:
A组件从接口到拿到新数据,然后把新数据渲染到 view上。这个过A组件的变更检测,同时也会沿着组件树,从上而下 触发A组件的所有直系非直系 子组件的变更检测。
这个变化检测不仅仅会在 child A component 中执行,它会从 root component 开始沿着 component 关系树结构从上到下执行,直到最后一个 child component 完成变化检测达到稳定状态。也就是说在 GrandChild component 中也会触发执行变化检测,如果 GrandChild component 中还有它自己的 child component,会继续触发它的 child component 的变化检测。在这个从上到下的变化检测流中,一旦 child A component 中的变化检测已经完成了,任何在 GrandChild component 或者更低层级的 component 都不允许去改变 child A component 中的属性。
这个过程就是 Angular 的单向数据流。
单向数据流指的是从组件树的顶部到底部渲染扫描过程中应用程序数据流转到由渲染过程生成的输出DOM数据结构的流程。
在 Angular 整个页面渲染的过程:
更新 child component 的 input bindings,然后会触发 child component 中 OnInit、DoCheck、OnChanges 函数,如果页面有 ng-content,相应也会触发 ngAfterContentInit 和 ngAfterContentChecked。
Angular 会继续渲染当前 component 也就是 parent component 页面。
触发 child component 中的变化检测(change detection)。
触发 child component 中的 AfterViewInit 和 theAfterViewChecked。