Ionic 页面生命周期
本指南介绍了页面生命周期在使用 Ionic 和 Angular 构建的应用中如何工作。
¥This guide covers how the page life cycle works in an app built with Ionic and Angular.
Angular 生命周期事件
¥Angular Life Cycle Events
Ionic 拥抱 Angular 提供的生命周期事件。你会发现最常用的两个 Angular 事件是:
¥Ionic embraces the life cycle events provided by Angular. The two Angular events you will find using the most are:
活动名称 | 描述 |
---|---|
ngOnInit | 在组件初始化期间触发一次。此事件可用于初始化本地成员并调用只需执行一次的服务。 |
ngOnDestroy | 在 Angular 破坏视图之前触发。对于清理很有用,比如取消订阅可观察对象。 |
有关 Angular 组件生命周期事件的更多信息,请访问他们的 组件生命周期文档。
¥For more info on the Angular Component Life Cycle events, visit their component lifecycle docs.
使用 ion-nav
或 ion-router-outlet
的组件不应使用 OnPush
变更检测策略。这样做将阻止诸如 ngOnInit
之类的生命周期钩子触发。此外,异步状态更改可能无法正确渲染。
¥Components that use ion-nav
or ion-router-outlet
should not use the OnPush
change detection strategy. Doing so will prevent lifecycle hooks such as ngOnInit
from firing. Additionally, asynchronous state changes may not render properly.
Ionic 页面事件
¥Ionic Page Events
除了 Angular 生命周期事件之外,Ionic Angular 还提供了一些你可以使用的附加事件:
¥In addition to the Angular life cycle events, Ionic Angular provides a few additional events that you can use:
活动名称 | 描述 |
---|---|
ionViewWillEnter | 当组件路由即将动画进入视图时触发。 |
ionViewDidEnter | 当组件路由完成动画时触发。 |
ionViewWillLeave | 当组件路由即将动画时触发。 |
ionViewDidLeave | 当组件路由完成动画时触发。 |
这些生命周期仅在由路由直接映射的组件上调用。这意味着如果 /pageOne
映射到 PageOneComponent
,则 Ionic 生命周期将在 PageOneComponent
上调用,但不会在 PageOneComponent
可能渲染的任何子组件上调用。
¥These lifecycles are only called on components directly mapped by a router. This means if /pageOne
maps to PageOneComponent
, then Ionic lifecycles will be called on PageOneComponent
but will not be called on any child components that PageOneComponent
may render.
ionViewWillEnter
和 ionViewDidEnter
之间的区别在于它们何时开火。前者在 ngOnInit
之后但页面转换开始之前触发,后者在转换结束后立即触发。