2019-12-02 12:47:19 -08:00
# Lifecycle hooks
2017-02-22 18:09:39 +00:00
2017-07-30 00:03:22 +08:00
# 生命周期钩子
2017-04-01 01:57:13 +02:00
2017-03-27 16:08:53 +01:00
A component has a lifecycle managed by Angular.
2017-07-23 11:51:25 +08:00
2018-03-20 17:09:18 +08:00
每个组件都有一个被 Angular 管理的生命周期。
2017-02-22 18:09:39 +00:00
2019-09-25 16:29:42 -05:00
Angular creates and renders components along with their children, checks when their data-bound properties change, and destroys them before removing them from the DOM.
2017-02-22 18:09:39 +00:00
2020-01-11 18:10:12 +08:00
Angular 创建和渲染组件及其子组件,当它们绑定的属性发生变化时检查它们,并在从 DOM 中移除它之前销毁它们。
2017-07-23 11:51:25 +08:00
2017-02-22 18:09:39 +00:00
Angular offers **lifecycle hooks**
that provide visibility into these key life moments and the ability to act when they occur.
2020-01-11 18:10:12 +08:00
Angular 提供了**生命周期钩子**,把它们生命中的这些关键时刻暴露出来,赋予你在它们发生时采取行动的能力。
2017-07-23 11:51:25 +08:00
2017-05-09 09:54:35 -07:00
A directive has the same set of lifecycle hooks.
2017-07-23 11:51:25 +08:00
除了那些组件内容和视图相关的钩子外,指令有相同生命周期钩子。
2017-02-22 18:09:39 +00:00
{@a hooks-overview}
2017-03-27 16:08:53 +01:00
## Component lifecycle hooks overview
2017-07-23 11:51:25 +08:00
## 组件生命周期钩子概览
2017-02-22 18:09:39 +00:00
Directive and component instances have a lifecycle
as Angular creates, updates, and destroys them.
Developers can tap into key moments in that lifecycle by implementing
2017-03-27 16:08:53 +01:00
one or more of the *lifecycle hook* interfaces in the Angular `core` library.
2017-02-22 18:09:39 +00:00
2019-01-27 22:56:04 +08:00
指令和组件的实例有一个生命周期:当 Angular 新建、更新和销毁它们时触发。
2018-03-20 17:09:18 +08:00
通过实现一个或多个 Angular `core` 库里定义的*生命周期钩子*接口,开发者可以介入该生命周期中的这些关键时刻。
2017-07-23 11:51:25 +08:00
2017-02-22 18:09:39 +00:00
Each interface has a single hook method whose name is the interface name prefixed with `ng` .
2017-03-31 12:23:16 +01:00
For example, the `OnInit` interface has a hook method named `ngOnInit()`
2017-02-22 18:09:39 +00:00
that Angular calls shortly after creating the component:
2018-03-20 17:09:18 +08:00
每个接口都有唯一的一个钩子方法,它们的名字是由接口名再加上 `ng` 前缀构成的。比如,`OnInit` 接口的钩子方法叫做 `ngOnInit` ,
Angular 在创建组件后立刻调用它,:
2017-07-23 11:51:25 +08:00
2019-07-20 20:40:17 +03:00
< code-example path = "lifecycle-hooks/src/app/peek-a-boo.component.ts" region = "ngOnInit" header = "peek-a-boo.component.ts (excerpt)" > < / code-example >
2017-04-01 01:57:13 +02:00
2017-05-09 09:54:35 -07:00
No directive or component will implement all of the lifecycle hooks.
2017-02-22 18:09:39 +00:00
Angular only calls a directive/component hook method *if it is defined* .
2018-03-20 17:09:18 +08:00
没有指令或者组件会实现所有这些接口,并且有些钩子只对组件有意义。只有在指令/组件中*定义过的*那些钩子方法才会被 Angular 调用。
2017-07-23 11:51:25 +08:00
2017-02-22 18:09:39 +00:00
{@a hooks-purpose-timing}
## Lifecycle sequence
2017-07-23 11:51:25 +08:00
## 生命周期的顺序
2017-02-22 18:09:39 +00:00
*After* creating a component/directive by calling its constructor, Angular
calls the lifecycle hook methods in the following sequence at specific moments:
2017-03-30 20:04:18 +01:00
2018-03-20 17:09:18 +08:00
当 Angular 使用构造函数新建一个组件或指令后,就会按下面的顺序在特定时刻调用这些生命周期钩子方法:
2017-07-23 11:51:25 +08:00
2017-02-22 18:09:39 +00:00
< table width = "100%" >
2017-05-18 21:31:27 +01:00
< col width = "20%" > < / col >
2018-03-03 21:06:01 +08:00
< col width = "80%" > < / col >
< tr >
2017-07-23 11:51:25 +08:00
2018-03-07 11:25:56 +08:00
< th >
2017-02-22 18:09:39 +00:00
2018-03-07 11:25:56 +08:00
Hook
2017-07-23 11:51:25 +08:00
2018-03-24 11:16:33 +08:00
钩子
2018-03-07 11:25:56 +08:00
< / th >
< th >
Purpose and Timing
2018-03-03 21:06:01 +08:00
2018-03-24 11:16:33 +08:00
用途及时机
2018-03-07 11:25:56 +08:00
< / th >
< / tr >
2017-03-31 12:23:16 +01:00
< tr style = 'vertical-align:top' >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< td >
2018-03-03 21:06:01 +08:00
2017-03-27 16:08:53 +01:00
< code > ngOnChanges()< / code >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< / td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< td >
2017-04-01 01:57:13 +02:00
Respond when Angular (re)sets data-bound input properties.
The method receives a `SimpleChanges` object of current and previous property values.
2018-03-20 17:09:18 +08:00
当 Angular( 重新) 设置数据绑定输入属性时响应。
该方法接受当前和上一属性值的 `SimpleChanges` 对象
2017-07-23 11:51:25 +08:00
2017-04-01 01:57:13 +02:00
Called before `ngOnInit()` and whenever one or more data-bound input properties change.
2019-02-02 02:29:31 +08:00
在 `ngOnInit()` 之前以及所绑定的一个或多个输入属性的值发生变化时都会调用。
2017-07-23 11:51:25 +08:00
2017-02-22 18:09:39 +00:00
< / td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< / tr >
2017-03-31 12:23:16 +01:00
< tr style = 'vertical-align:top' >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< td >
2018-03-03 21:06:01 +08:00
2017-03-27 16:08:53 +01:00
< code > ngOnInit()< / code >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< / td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< td >
2017-04-01 01:57:13 +02:00
Initialize the directive/component after Angular first displays the data-bound properties
and sets the directive/component's input properties.
2018-03-20 17:09:18 +08:00
在 Angular 第一次显示数据绑定和设置指令/组件的输入属性之后,初始化指令/组件。
2017-07-23 11:51:25 +08:00
2018-03-03 21:06:01 +08:00
Called _once_ , after the _first_ `ngOnChanges()` .
2017-07-23 11:51:25 +08:00
2018-03-20 17:09:18 +08:00
在第一轮 `ngOnChanges()` 完成之后调用,只调用**一次**。
2017-04-01 01:57:13 +02:00
2017-02-22 18:09:39 +00:00
< / td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< / tr >
2017-03-31 12:23:16 +01:00
< tr style = 'vertical-align:top' >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< td >
2018-03-03 21:06:01 +08:00
2017-03-27 16:08:53 +01:00
< code > ngDoCheck()< / code >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< / td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< td >
2017-04-01 01:57:13 +02:00
Detect and act upon changes that Angular can't or won't detect on its own.
2018-03-20 17:09:18 +08:00
检测,并在发生 Angular 无法或不愿意自己检测的变化时作出反应。
2017-07-23 11:51:25 +08:00
2017-04-01 01:57:13 +02:00
Called during every change detection run, immediately after `ngOnChanges()` and `ngOnInit()` .
2019-02-02 02:29:31 +08:00
在每个变更检测周期中,紧跟在 `ngOnChanges()` 和 `ngOnInit()` 后面调用。
2017-07-23 11:51:25 +08:00
2017-02-22 18:09:39 +00:00
< / td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< / tr >
2017-03-31 12:23:16 +01:00
< tr style = 'vertical-align:top' >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< td >
2018-03-03 21:06:01 +08:00
2017-03-27 16:08:53 +01:00
< code > ngAfterContentInit()< / code >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< / td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< td >
2017-04-01 01:57:13 +02:00
2017-05-09 09:54:35 -07:00
Respond after Angular projects external content into the component's view / the view that a directive is in.
2017-04-01 01:57:13 +02:00
2019-03-03 23:29:28 +08:00
当 Angular 把外部内容投影进组件/指令的视图之后调用。
2017-07-23 11:51:25 +08:00
2017-04-01 01:57:13 +02:00
Called _once_ after the first `ngDoCheck()` .
2018-03-20 17:09:18 +08:00
第一次 `ngDoCheck()` 之后调用,只调用一次。
2017-07-23 11:51:25 +08:00
2017-02-22 18:09:39 +00:00
< / td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< / tr >
2017-03-31 12:23:16 +01:00
< tr style = 'vertical-align:top' >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< td >
2018-03-03 21:06:01 +08:00
2017-03-27 16:08:53 +01:00
< code > ngAfterContentChecked()< / code >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< / td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< td >
2017-04-01 01:57:13 +02:00
2017-05-09 09:54:35 -07:00
Respond after Angular checks the content projected into the directive/component.
2017-04-01 01:57:13 +02:00
2019-01-27 22:56:04 +08:00
每当 Angular 完成被投影组件内容的变更检测之后调用。
2017-07-23 11:51:25 +08:00
2017-04-01 01:57:13 +02:00
Called after the `ngAfterContentInit()` and every subsequent `ngDoCheck()` .
2018-03-20 17:09:18 +08:00
`ngAfterContentInit()` 和每次 `ngDoCheck()` 之后调用
2017-07-23 11:51:25 +08:00
2017-02-22 18:09:39 +00:00
< / td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< / tr >
2017-03-31 12:23:16 +01:00
< tr style = 'vertical-align:top' >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< td >
2018-03-03 21:06:01 +08:00
2017-03-27 16:08:53 +01:00
< code > ngAfterViewInit()< / code >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< / td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< td >
2017-04-01 01:57:13 +02:00
2017-05-09 09:54:35 -07:00
Respond after Angular initializes the component's views and child views / the view that a directive is in.
2017-04-01 01:57:13 +02:00
2019-03-03 23:29:28 +08:00
当 Angular 初始化完组件视图及其子视图之后调用。
2017-07-23 11:51:25 +08:00
2017-04-01 01:57:13 +02:00
Called _once_ after the first `ngAfterContentChecked()` .
2018-03-20 17:09:18 +08:00
第一次 `ngAfterContentChecked()` 之后调用,只调用一次。
2017-07-23 11:51:25 +08:00
2017-02-22 18:09:39 +00:00
< / td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< / tr >
2017-03-31 12:23:16 +01:00
< tr style = 'vertical-align:top' >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< td >
2018-03-03 21:06:01 +08:00
2017-03-27 16:08:53 +01:00
< code > ngAfterViewChecked()< / code >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< / td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< td >
2017-04-01 01:57:13 +02:00
2017-05-09 09:54:35 -07:00
Respond after Angular checks the component's views and child views / the view that a directive is in.
2017-04-01 01:57:13 +02:00
2019-01-27 22:56:04 +08:00
每当 Angular 做完组件视图和子视图的变更检测之后调用。
2017-07-23 11:51:25 +08:00
2019-01-17 21:26:18 +04:00
Called after the `ngAfterViewInit()` and every subsequent `ngAfterContentChecked()` .
2017-04-01 01:57:13 +02:00
2018-03-20 17:09:18 +08:00
`ngAfterViewInit()` 和每次 `ngAfterContentChecked()` 之后调用。
2017-07-23 11:51:25 +08:00
2017-02-22 18:09:39 +00:00
< / td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< / tr >
2017-03-31 12:23:16 +01:00
< tr style = 'vertical-align:top' >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< td >
2018-03-03 21:06:01 +08:00
2017-12-17 14:17:43 +02:00
< code > ngOnDestroy()< / code >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< / td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< td >
2017-04-01 01:57:13 +02:00
Cleanup just before Angular destroys the directive/component.
Unsubscribe Observables and detach event handlers to avoid memory leaks.
2019-03-15 03:38:06 +08:00
每当 Angular 每次销毁指令/组件之前调用并清扫。
2017-07-23 11:51:25 +08:00
在这儿反订阅可观察对象和分离事件处理器,以防内存泄漏。
2017-04-01 01:57:13 +02:00
Called _just before_ Angular destroys the directive/component.
2018-03-20 17:09:18 +08:00
在 Angular 销毁指令/组件之前调用。
2017-07-23 11:51:25 +08:00
2017-02-22 18:09:39 +00:00
< / td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< / tr >
< / table >
2017-03-31 12:23:16 +01:00
{@a interface-optional}
2017-04-01 01:57:13 +02:00
## Interfaces are optional (technically)
2017-03-31 12:23:16 +01:00
2018-03-24 08:38:15 +08:00
## 接口是可选的(严格来说)
2017-07-23 11:51:25 +08:00
2017-03-31 12:23:16 +01:00
The interfaces are optional for JavaScript and Typescript developers from a purely technical perspective.
The JavaScript language doesn't have interfaces.
Angular can't see TypeScript interfaces at runtime because they disappear from the transpiled JavaScript.
2018-03-20 17:09:18 +08:00
从纯技术的角度讲,接口对 JavaScript 和 TypeScript 的开发者都是可选的。JavaScript 语言本身没有接口。
Angular 在运行时看不到 TypeScript 接口,因为它们在编译为 JavaScript 的时候已经消失了。
2017-07-23 11:51:25 +08:00
2017-03-31 12:23:16 +01:00
Fortunately, they aren't necessary.
You don't have to add the lifecycle hook interfaces to directives and components to benefit from the hooks themselves.
2018-03-03 21:06:01 +08:00
幸运的是,它们并不是必须的。
2018-03-22 17:18:48 +08:00
你并不需要在指令和组件上添加生命周期钩子接口就能获得钩子带来的好处。
2017-07-23 11:51:25 +08:00
2017-03-31 12:23:16 +01:00
Angular instead inspects directive and component classes and calls the hook methods *if they are defined* .
Angular finds and calls methods like `ngOnInit()` , with or without the interfaces.
2018-03-22 17:18:48 +08:00
Angular 会去检测这些指令和组件的类,一旦发现钩子方法被定义了,就调用它们。
2018-03-20 17:09:18 +08:00
Angular 会找到并调用像 `ngOnInit()` 这样的钩子方法,有没有接口无所谓。
2017-07-23 11:51:25 +08:00
2017-03-31 12:23:16 +01:00
Nonetheless, it's good practice to add interfaces to TypeScript directive classes
in order to benefit from strong typing and editor tooling.
2018-03-22 17:18:48 +08:00
虽然如此,在 TypeScript 指令类中添加接口是一项最佳实践,它可以获得强类型和 IDE 等编辑器带来的好处。
2017-07-23 11:51:25 +08:00
2017-02-22 18:09:39 +00:00
{@a other-lifecycle-hooks}
2017-03-27 16:08:53 +01:00
## Other Angular lifecycle hooks
2017-02-22 18:09:39 +00:00
2019-01-27 22:56:04 +08:00
## 其它 Angular 生命周期钩子
2017-07-23 11:51:25 +08:00
2017-02-22 18:09:39 +00:00
Other Angular sub-systems may have their own lifecycle hooks apart from these component hooks.
2017-04-01 01:57:13 +02:00
2018-03-20 17:09:18 +08:00
Angular 的其它子系统除了有这些组件钩子外,还可能有它们自己的生命周期钩子。
2017-07-23 11:51:25 +08:00
2017-02-22 18:09:39 +00:00
3rd party libraries might implement their hooks as well in order to give developers more
control over how these libraries are used.
2018-03-22 17:18:48 +08:00
第三方库也可能会实现它们自己的钩子,以便让这些开发者在使用时能做更多的控制。
2017-07-23 11:51:25 +08:00
2017-04-30 22:10:32 +02:00
{@a the-sample}
2017-04-01 01:57:13 +02:00
2017-03-27 16:08:53 +01:00
## Lifecycle examples
2017-02-22 18:09:39 +00:00
2018-03-24 08:38:15 +08:00
## 生命周期范例
2017-07-23 11:51:25 +08:00
2017-02-22 18:09:39 +00:00
The < live-example > < / live-example >
demonstrates the lifecycle hooks in action through a series of exercises
presented as components under the control of the root `AppComponent` .
2018-03-20 17:09:18 +08:00
< live-example ></ live-example > 通过在受控于根组件 `AppComponent` 的一些组件上进行的一系列练习,演示了生命周期钩子的运作方式。
2017-07-23 11:51:25 +08:00
2017-03-27 16:08:53 +01:00
They follow a common pattern: a *parent* component serves as a test rig for
2017-02-22 18:09:39 +00:00
a *child* component that illustrates one or more of the lifecycle hook methods.
2017-07-23 11:51:25 +08:00
它们遵循了一个常用的模式:用*子组件*演示一个或多个生命周期钩子方法,而*父组件*被当作该*子组件*的测试台。
2017-02-22 18:09:39 +00:00
Here's a brief description of each exercise:
2017-07-23 11:51:25 +08:00
下面是每个练习简短的描述:
2017-02-22 18:09:39 +00:00
< table width = "100%" >
2017-05-18 21:31:27 +01:00
< col width = "20%" > < / col >
2018-03-03 21:06:01 +08:00
< col width = "80%" > < / col >
< tr >
2017-07-23 11:51:25 +08:00
2018-03-07 11:25:56 +08:00
< th >
2017-02-22 18:09:39 +00:00
2018-03-07 11:25:56 +08:00
Component
2018-03-24 13:12:42 +08:00
2018-03-24 08:44:35 +08:00
组件
2017-07-23 11:51:25 +08:00
2018-03-07 11:25:56 +08:00
< / th >
< th >
Description
2018-03-03 21:06:01 +08:00
2018-03-07 14:35:57 +08:00
说明
2018-03-07 11:25:56 +08:00
< / th >
< / tr >
2017-03-31 12:23:16 +01:00
< tr style = 'vertical-align:top' >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< a href = " #peek -a-boo" > Peek-a-boo</ a >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< / td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< td >
2017-04-01 01:57:13 +02:00
Demonstrates every lifecycle hook.
Each hook method writes to the on-screen log.
2017-07-23 11:51:25 +08:00
展示每个生命周期钩子,每个钩子方法都会在屏幕上显示一条日志。
2017-02-22 18:09:39 +00:00
2017-05-18 21:31:27 +01:00
< / td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< / tr >
2017-03-31 12:23:16 +01:00
< tr style = 'vertical-align:top' >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< a href = " #spy " > Spy</ a >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< / td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< td >
2017-04-01 01:57:13 +02:00
Directives have lifecycle hooks too.
A `SpyDirective` can log when the element it spies upon is
created or destroyed using the `ngOnInit` and `ngOnDestroy` hooks.
2018-03-22 17:18:48 +08:00
指令也同样有生命周期钩子。`SpyDirective` 可以利用 `ngOnInit` 和 `ngOnDestroy` 钩子在它所监视的每个元素被创建或销毁时输出日志。
2017-07-23 11:51:25 +08:00
2017-04-01 01:57:13 +02:00
This example applies the `SpyDirective` to a `<div>` in an `ngFor` *hero* repeater
managed by the parent `SpyComponent` .
2017-07-23 11:51:25 +08:00
2018-03-20 17:09:18 +08:00
本例把 `SpyDirective` 应用到父组件里的 `ngFor` *英雄*重复器(repeater)的 `<div>` 里面。
2017-02-22 18:09:39 +00:00
2017-05-18 21:31:27 +01:00
< / td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< / tr >
2017-03-31 12:23:16 +01:00
< tr style = 'vertical-align:top' >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< a href = " #onchanges " > OnChanges</ a >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< / td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< td >
2017-04-01 01:57:13 +02:00
See how Angular calls the `ngOnChanges()` hook with a `changes` object
every time one of the component input properties changes.
Shows how to interpret the `changes` object.
2017-07-23 11:51:25 +08:00
2018-03-20 17:09:18 +08:00
这里将会看到: 每当组件的输入属性发生变化时, Angular 会如何以 `changes` 对象作为参数去调用 `ngOnChanges()` 钩子。
展示了该如何理解和使用 `changes` 对象。
2017-07-23 11:51:25 +08:00
2017-05-18 21:31:27 +01:00
< / td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< / tr >
2017-03-31 12:23:16 +01:00
< tr style = 'vertical-align:top' >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< a href = " #docheck " > DoCheck</ a >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< / td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< td >
2017-04-01 01:57:13 +02:00
Implements an `ngDoCheck()` method with custom change detection.
See how often Angular calls this hook and watch it post changes to a log.
2017-07-23 11:51:25 +08:00
2018-03-20 17:09:18 +08:00
实现了一个 `ngDoCheck()` 方法,通过它可以自定义变更检测逻辑。
这里将会看到: Angular 会用什么频度调用这个钩子,监视它的变化,并把这些变化输出成一条日志。
2017-07-23 11:51:25 +08:00
2017-05-18 21:31:27 +01:00
< / td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< / tr >
2017-03-31 12:23:16 +01:00
< tr style = 'vertical-align:top' >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< a href = " #afterview " > AfterView</ a >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< / td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< td >
2017-04-01 01:57:13 +02:00
Shows what Angular means by a *view* .
Demonstrates the `ngAfterViewInit` and `ngAfterViewChecked` hooks.
2017-07-23 11:51:25 +08:00
2018-03-20 17:09:18 +08:00
显示 Angular 中的*视图*所指的是什么。
演示了 `ngAfterViewInit` 和 `ngAfterViewChecked` 钩子。
2017-02-22 18:09:39 +00:00
2017-05-18 21:31:27 +01:00
< / td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< / tr >
2017-03-31 12:23:16 +01:00
< tr style = 'vertical-align:top' >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< a href = " #aftercontent " > AfterContent</ a >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< / td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< td >
2017-04-01 01:57:13 +02:00
Shows how to project external content into a component and
how to distinguish projected content from a component's view children.
Demonstrates the `ngAfterContentInit` and `ngAfterContentChecked` hooks.
2017-07-23 11:51:25 +08:00
展示如何把外部内容投影进组件中,以及如何区分“投影进来的内容”和“组件的子视图”。
2018-03-20 17:09:18 +08:00
演示了 `ngAfterContentInit` 和 `ngAfterContentChecked` 钩子。
2017-02-22 18:09:39 +00:00
2017-05-18 21:31:27 +01:00
< / td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< / tr >
2017-03-31 12:23:16 +01:00
< tr style = 'vertical-align:top' >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< td >
2017-07-23 11:51:25 +08:00
2018-03-03 21:06:01 +08:00
Counter
2017-07-23 11:51:25 +08:00
2018-03-03 21:06:01 +08:00
计数器
2017-07-23 11:51:25 +08:00
2017-02-22 18:09:39 +00:00
< / td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< td >
2017-04-01 01:57:13 +02:00
Demonstrates a combination of a component and a directive
each with its own hooks.
2017-07-23 11:51:25 +08:00
演示了组件和指令的组合,它们各自有自己的钩子。
2017-04-01 01:57:13 +02:00
In this example, a `CounterComponent` logs a change (via `ngOnChanges` )
every time the parent component increments its input counter property.
Meanwhile, the `SpyDirective` from the previous example is applied
to the `CounterComponent` log where it watches log entries being created and destroyed.
2018-03-20 17:09:18 +08:00
在这个例子中,每当父组件递增它的输入属性 `counter` 时,`CounterComponent` 就会通过 `ngOnChanges` 记录一条变更。
2018-03-22 17:18:48 +08:00
同时,前一个例子中的 `SpyDirective` 被用于在 `CounterComponent` 上提供日志,它可以同时观察到日志的创建和销毁过程。
2017-07-23 11:51:25 +08:00
2017-02-22 18:09:39 +00:00
< / td >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
< / tr >
< / table >
2017-03-27 16:08:53 +01:00
The remainder of this page discusses selected exercises in further detail.
2017-02-22 18:09:39 +00:00
2018-03-22 17:18:48 +08:00
本文剩下的部分将详细讨论这些练习。
2017-07-23 11:51:25 +08:00
2017-02-22 18:09:39 +00:00
{@a peek-a-boo}
## Peek-a-boo: all hooks
2017-07-23 11:51:25 +08:00
## Peek-a-boo: 全部钩子
2017-02-22 18:09:39 +00:00
The `PeekABooComponent` demonstrates all of the hooks in one component.
2018-03-20 17:09:18 +08:00
`PeekABooComponent` 组件演示了组件中所有可能存在的钩子。
2017-07-23 11:51:25 +08:00
2017-02-22 18:09:39 +00:00
You would rarely, if ever, implement all of the interfaces like this.
The peek-a-boo exists to show how Angular calls the hooks in the expected order.
2017-07-23 11:51:25 +08:00
你可能很少、或者永远不会像这里一样实现所有这些接口。
2018-03-22 17:18:48 +08:00
之所以在 peek-a-boo 中这么做,是为了演示 Angular 是如何按照期望的顺序调用这些钩子的。
2017-07-23 11:51:25 +08:00
2017-02-22 18:09:39 +00:00
This snapshot reflects the state of the log after the user clicked the *Create...* button and then the *Destroy...* button.
2017-03-30 20:04:18 +01:00
2017-07-23 11:51:25 +08:00
用户点击**Create...**按钮,然后点击**Destroy...**按钮后,日志的状态如下图所示:
2019-11-11 14:47:51 -08:00
< div class = "lightbox" >
2017-05-09 23:53:32 +01:00
< img src = "generated/images/guide/lifecycle-hooks/peek-a-boo.png" alt = "Peek-a-boo" >
2019-11-11 14:47:51 -08:00
< / div >
2017-02-22 18:09:39 +00:00
The sequence of log messages follows the prescribed hook calling order:
`OnChanges` , `OnInit` , `DoCheck` (3x), `AfterContentInit` , `AfterContentChecked` (3x),
`AfterViewInit` , `AfterViewChecked` (3x), and `OnDestroy` .
2017-07-23 11:51:25 +08:00
日志信息的日志和所规定的钩子调用顺序是一致的:
`OnChanges` 、`OnInit` 、`DoCheck` (3x)、`AfterContentInit` 、`AfterContentChecked` (3x)、
2018-03-20 17:09:18 +08:00
`AfterViewInit` 、`AfterViewChecked` (3x)和 `OnDestroy`
2017-07-23 11:51:25 +08:00
2018-07-19 15:00:08 -07:00
< div class = "alert is-helpful" >
2017-03-27 16:08:53 +01:00
2017-05-18 21:31:27 +01:00
The constructor isn't an Angular hook *per se* .
The log confirms that input properties (the `name` property in this case) have no assigned values at construction.
2017-03-27 16:08:53 +01:00
2018-03-20 17:09:18 +08:00
构造函数本质上不应该算作 Angular 的钩子。
记录确认了在创建期间那些输入属性(这里是 `name` 属性)没有被赋值。
2017-07-23 11:51:25 +08:00
2017-04-10 16:51:13 +01:00
< / div >
2017-03-27 16:08:53 +01:00
Had the user clicked the *Update Hero* button, the log would show another `OnChanges` and two more triplets of
2017-02-22 18:09:39 +00:00
`DoCheck` , `AfterContentChecked` and `AfterViewChecked` .
2017-03-27 16:08:53 +01:00
Clearly these three hooks fire *often* . Keep the logic in these hooks as lean as possible!
2017-02-22 18:09:39 +00:00
2018-03-22 17:18:48 +08:00
如果用户点击*Update Hero*按钮,就会看到另一个 `OnChanges` 和至少两组 `DoCheck` 、`AfterContentChecked` 和 `AfterViewChecked` 钩子。
显然,这三种钩子被触发了*很多次*,必须让这三种钩子里的逻辑尽可能的精简!
2017-07-23 11:51:25 +08:00
2017-02-22 18:09:39 +00:00
The next examples focus on hook details.
2017-07-23 11:51:25 +08:00
下一个例子就聚焦于这些钩子的细节上。
2017-02-22 18:09:39 +00:00
{@a spy}
## Spying *OnInit* and *OnDestroy*
2018-03-20 17:15:36 +08:00
## 窥探 *OnInit* 和 *OnDestroy*
2017-07-23 11:51:25 +08:00
2017-02-22 18:09:39 +00:00
Go undercover with these two spy hooks to discover when an element is initialized or destroyed.
2018-03-20 17:09:18 +08:00
潜入这两个 spy 钩子来发现一个元素是什么时候被初始化或者销毁的。
2017-07-23 11:51:25 +08:00
2017-02-22 18:09:39 +00:00
This is the perfect infiltration job for a directive.
The heroes will never know they're being watched.
2018-03-22 17:18:48 +08:00
指令是一种完美的渗透方式,这些英雄们永远不会知道该指令的存在。
2017-07-23 11:51:25 +08:00
2018-07-19 15:00:08 -07:00
< div class = "alert is-helpful" >
2017-03-27 16:08:53 +01:00
2017-05-18 21:31:27 +01:00
Kidding aside, pay attention to two key points:
2017-04-01 01:57:13 +02:00
2018-03-03 21:06:01 +08:00
不开玩笑了,注意下面两个关键点:
2017-04-01 01:57:13 +02:00
2018-03-03 21:06:01 +08:00
1. Angular calls hook methods for *directives* as well as components.< br >< br >
2017-08-04 09:27:48 +08:00
2018-03-20 17:09:18 +08:00
就像对组件一样, Angular 也会对*指令*调用这些钩子方法。< br > < br >
2017-08-04 09:27:48 +08:00
2018-03-03 21:06:01 +08:00
2. A spy directive can provide insight into a DOM object that you cannot change directly.
Obviously you can't touch the implementation of a native `<div>` .
You can't modify a third party component either.
But you can watch both with a directive.
2017-02-22 18:09:39 +00:00
2018-03-22 17:18:48 +08:00
一个侦探(spy)指令可以让你在无法直接修改 DOM 对象实现代码的情况下,透视其内部细节。
2018-03-20 17:09:18 +08:00
显然,你不能修改一个原生 `<div>` 元素的实现代码。
2017-07-23 11:51:25 +08:00
你同样不能修改第三方组件。
2018-03-22 17:18:48 +08:00
但你用一个指令就能监视它们了。
2017-03-27 16:08:53 +01:00
2017-04-10 16:51:13 +01:00
< / div >
2017-03-27 16:08:53 +01:00
The sneaky spy directive is simple, consisting almost entirely of `ngOnInit()` and `ngOnDestroy()` hooks
2017-02-22 18:09:39 +00:00
that log messages to the parent via an injected `LoggerService` .
2019-02-02 02:29:31 +08:00
这个鬼鬼祟祟的侦探指令很简单,几乎完全由 `ngOnInit()` 和 `ngOnDestroy()` 钩子组成,它通过一个注入进来的 `LoggerService` 把消息记录到父组件中去。
2017-08-04 07:39:15 +08:00
2019-07-20 20:40:17 +03:00
< code-example path = "lifecycle-hooks/src/app/spy.directive.ts" region = "spy-directive" header = "src/app/spy.directive.ts" > < / code-example >
2017-04-01 01:57:13 +02:00
2017-02-22 18:09:39 +00:00
You can apply the spy to any native or component element and it'll be initialized and destroyed
at the same time as that element.
2017-03-27 16:08:53 +01:00
Here it is attached to the repeated hero `<div>` :
2018-03-22 17:18:48 +08:00
你可以把这个侦探指令写到任何原生元素或组件元素上,它将与所在的组件同时初始化和销毁。
2018-03-20 17:09:18 +08:00
下面是把它附加到用来重复显示英雄数据的这个 `<div>` 上。
2017-07-23 11:51:25 +08:00
2019-07-20 20:40:17 +03:00
< code-example path = "lifecycle-hooks/src/app/spy.component.html" region = "template" header = "src/app/spy.component.html" > < / code-example >
2017-04-01 01:57:13 +02:00
2017-02-22 18:09:39 +00:00
Each spy's birth and death marks the birth and death of the attached hero `<div>`
with an entry in the *Hook Log* as seen here:
2018-03-20 17:09:18 +08:00
每个“侦探”的出生和死亡也同时标记出了存放英雄的那个 `<div>` 的出生和死亡。*钩子记录*中的结构是这样的:
2017-08-04 09:27:48 +08:00
2019-11-11 14:47:51 -08:00
< div class = "lightbox" >
2017-05-09 23:53:32 +01:00
< img src = 'generated/images/guide/lifecycle-hooks/spy-directive.gif' alt = "Spy Directive" >
2019-11-11 14:47:51 -08:00
< / div >
2017-02-22 18:09:39 +00:00
2017-03-27 16:08:53 +01:00
Adding a hero results in a new hero `<div>` . The spy's `ngOnInit()` logs that event.
2017-02-22 18:09:39 +00:00
2018-03-20 17:09:18 +08:00
添加一个英雄就会产生一个新的英雄 `<div>` 。侦探的 `ngOnInit()` 记录下了这个事件。
2017-07-23 11:51:25 +08:00
2017-02-22 18:09:39 +00:00
The *Reset* button clears the `heroes` list.
Angular removes all hero `<div>` elements from the DOM and destroys their spy directives at the same time.
2017-03-27 16:08:53 +01:00
The spy's `ngOnDestroy()` method reports its last moments.
2017-02-22 18:09:39 +00:00
2018-03-20 17:15:36 +08:00
*Reset* 按钮清除了这个 `heroes` 列表。
2018-03-20 17:09:18 +08:00
Angular 从 DOM 中移除了所有英雄的 div, 并且同时销毁了附加在这些 div 上的侦探指令。
侦探的 `ngOnDestroy()` 方法汇报了它自己的临终时刻。
2017-07-23 11:51:25 +08:00
2017-03-27 16:08:53 +01:00
The `ngOnInit()` and `ngOnDestroy()` methods have more vital roles to play in real applications.
2017-02-22 18:09:39 +00:00
2018-03-20 17:09:18 +08:00
在真实的应用程序中,`ngOnInit()` 和 `ngOnDestroy()` 方法扮演着更重要的角色。
2017-07-23 11:51:25 +08:00
2017-03-27 16:08:53 +01:00
{@a oninit}
2017-04-01 01:57:13 +02:00
2017-03-27 16:08:53 +01:00
### _OnInit()_
2017-02-22 18:09:39 +00:00
2017-03-27 16:08:53 +01:00
Use `ngOnInit()` for two main reasons:
2017-04-01 01:57:13 +02:00
2018-03-20 17:09:18 +08:00
使用 `ngOnInit()` 有两个原因:
2017-07-23 11:51:25 +08:00
2017-03-27 16:08:53 +01:00
1. To perform complex initializations shortly after construction.
2017-07-23 11:51:25 +08:00
在构造函数之后马上执行复杂的初始化逻辑
2018-03-03 21:06:01 +08:00
2017-03-27 16:08:53 +01:00
1. To set up the component after Angular sets the input properties.
2017-02-22 18:09:39 +00:00
2018-03-20 17:09:18 +08:00
在 Angular 设置完输入属性之后,对该组件进行准备。
2017-07-23 11:51:25 +08:00
2017-02-22 18:09:39 +00:00
Experienced developers agree that components should be cheap and safe to construct.
2017-03-27 16:08:53 +01:00
2019-02-02 02:29:31 +08:00
有经验的开发者会认同组件应该能很便宜和安全的构造出来。
2017-07-23 11:51:25 +08:00
2018-07-19 15:00:08 -07:00
< div class = "alert is-helpful" >
2017-03-27 16:08:53 +01:00
2017-05-18 21:31:27 +01:00
Misko Hevery, Angular team lead,
[explains why ](http://misko.hevery.com/code-reviewers-guide/flaw-constructor-does-real-work/ )
you should avoid complex constructor logic.
2017-03-27 16:08:53 +01:00
2018-03-20 17:09:18 +08:00
Misko Hevery, Angular 项目的组长,在[这里解释 ](http://misko.hevery.com/code-reviewers-guide/flaw-constructor-does-real-work/ )了你为什么应该避免复杂的构造函数逻辑。
2017-07-23 11:51:25 +08:00
2017-04-10 16:51:13 +01:00
< / div >
2017-03-27 16:08:53 +01:00
2017-02-22 18:09:39 +00:00
Don't fetch data in a component constructor.
You shouldn't worry that a new component will try to contact a remote server when
created under test or before you decide to display it.
Constructors should do no more than set the initial local variables to simple values.
2017-07-23 11:51:25 +08:00
不要在组件的构造函数中获取数据?
2018-03-22 17:18:48 +08:00
在测试环境下新建组件时或在你决定要显示它之前,不应该担心它会尝试联系远程服务器。
2017-07-23 11:51:25 +08:00
构造函数中除了使用简单的值对局部变量进行初始化之外,什么都不应该做。
2017-03-27 16:08:53 +01:00
An `ngOnInit()` is a good place for a component to fetch its initial data. The
2018-03-03 21:06:01 +08:00
[Tour of Heroes Tutorial ](tutorial/toh-pt4#oninit ) guide shows how.
2017-02-22 18:09:39 +00:00
2018-03-20 17:09:18 +08:00
`ngOnInit()` 是组件获取初始数据的好地方。[指南 ](tutorial/toh-pt4#oninit )中讲解了如何这样做。
2017-02-22 18:09:39 +00:00
Remember also that a directive's data-bound input properties are not set until _after construction_ .
That's a problem if you need to initialize the directive based on those properties.
2017-03-27 16:08:53 +01:00
They'll have been set when `ngOnInit()` runs.
2018-03-22 17:24:05 +08:00
另外还要记住,在指令的*构造函数完成之前*,那些被绑定的输入属性还都没有值。
2018-03-22 17:18:48 +08:00
如果你需要基于这些属性的值来初始化这个指令,这种情况就会出问题。
2018-03-20 17:09:18 +08:00
而当 `ngOnInit()` 执行的时候,这些属性都已经被正确的赋值过了。
2017-07-23 11:51:25 +08:00
2018-07-19 15:00:08 -07:00
< div class = "alert is-helpful" >
2017-03-27 16:08:53 +01:00
2017-05-18 21:31:27 +01:00
The `ngOnChanges()` method is your first opportunity to access those properties.
Angular calls `ngOnChanges()` before `ngOnInit()` and many times after that.
It only calls `ngOnInit()` once.
2017-03-27 16:08:53 +01:00
2019-01-27 22:56:04 +08:00
`ngOnChanges()` 方法是你访问这些属性的第一次机会。Angular 会在 `ngOnInit()` 之前调用 `ngOnChanges()` ,之后还会调用很多次。但只会调用一次 `ngOnInit()` 。
2017-07-23 11:51:25 +08:00
2017-04-10 16:51:13 +01:00
< / div >
2017-03-27 16:08:53 +01:00
You can count on Angular to call the `ngOnInit()` method _soon_ after creating the component.
2017-02-22 18:09:39 +00:00
That's where the heavy initialization logic belongs.
2018-03-20 17:09:18 +08:00
你可以信任 Angular 会在创建组件后立刻调用 `ngOnInit()` 方法。
2017-07-23 11:51:25 +08:00
这里是放置复杂初始化逻辑的好地方。
2017-03-27 16:08:53 +01:00
{@a ondestroy}
2017-04-01 01:57:13 +02:00
2017-03-27 16:08:53 +01:00
### _OnDestroy()_
Put cleanup logic in `ngOnDestroy()` , the logic that *must* run before Angular destroys the directive.
2017-02-22 18:09:39 +00:00
2018-03-20 17:09:18 +08:00
一些清理逻辑*必须*在 Angular 销毁指令之前运行,把它们放在 `ngOnDestroy()` 中。
2017-07-23 11:51:25 +08:00
2017-02-22 18:09:39 +00:00
This is the time to notify another part of the application that the component is going away.
2017-07-23 11:51:25 +08:00
这是在该组件消失之前,可用来通知应用程序中其它部分的最后一个时间点。
2017-02-22 18:09:39 +00:00
This is the place to free resources that won't be garbage collected automatically.
2017-03-27 16:08:53 +01:00
Unsubscribe from Observables and DOM events. Stop interval timers.
2017-02-22 18:09:39 +00:00
Unregister all callbacks that this directive registered with global or application services.
You risk memory leaks if you neglect to do so.
2017-07-23 11:51:25 +08:00
这里是用来释放那些不会被垃圾收集器自动回收的各类资源的地方。
2018-03-20 17:09:18 +08:00
取消那些对可观察对象和 DOM 事件的订阅。停止定时器。注销该指令曾注册到全局服务或应用级服务中的各种回调函数。
2017-07-23 11:51:25 +08:00
如果不这么做,就会有导致内存泄露的风险。
2017-03-27 16:08:53 +01:00
{@a onchanges}
2017-04-01 01:57:13 +02:00
2017-03-27 16:08:53 +01:00
## _OnChanges()_
Angular calls its `ngOnChanges()` method whenever it detects changes to ** *input properties*** of the component (or directive).
2017-02-22 18:09:39 +00:00
This example monitors the `OnChanges` hook.
2018-03-20 17:09:18 +08:00
一旦检测到该组件(或指令)的***输入属性***发生了变化, Angular 就会调用它的 `ngOnChanges()` 方法。
本例监控 `OnChanges` 钩子。
2017-07-23 11:51:25 +08:00
2019-07-20 20:40:17 +03:00
< code-example path = "lifecycle-hooks/src/app/on-changes.component.ts" region = "ng-on-changes" header = "on-changes.component.ts (excerpt)" > < / code-example >
2017-04-01 01:57:13 +02:00
2017-03-27 16:08:53 +01:00
The `ngOnChanges()` method takes an object that maps each changed property name to a
2017-04-30 22:10:32 +02:00
[SimpleChange ](api/core/SimpleChange ) object holding the current and previous property values.
2017-02-22 18:09:39 +00:00
This hook iterates over the changed properties and logs them.
2018-03-20 17:09:18 +08:00
`ngOnChanges()` 方法获取了一个对象,它把每个发生变化的属性名都映射到了一个[SimpleChange ](api/core/SimpleChange )对象,
2018-03-22 17:18:48 +08:00
该对象中有属性的当前值和前一个值。这个钩子会在这些发生了变化的属性上进行迭代,并记录它们。
2017-07-23 11:51:25 +08:00
2017-02-22 18:09:39 +00:00
The example component, `OnChangesComponent` , has two input properties: `hero` and `power` .
2018-03-20 17:09:18 +08:00
这个例子中的 `OnChangesComponent` 组件有两个输入属性:`hero` 和 `power` 。
2017-07-23 11:51:25 +08:00
2019-07-20 20:40:17 +03:00
< code-example path = "lifecycle-hooks/src/app/on-changes.component.ts" region = "inputs" header = "src/app/on-changes.component.ts" > < / code-example >
2017-04-01 01:57:13 +02:00
2017-02-22 18:09:39 +00:00
The host `OnChangesParentComponent` binds to them like this:
2018-03-20 17:09:18 +08:00
宿主 `OnChangesParentComponent` 绑定了它们,就像这样:
2017-08-04 07:39:15 +08:00
2018-10-11 13:29:59 +02:00
< code-example path = "lifecycle-hooks/src/app/on-changes-parent.component.html" region = "on-changes" header = "src/app/on-changes-parent.component.html" > < / code-example >
2017-04-01 01:57:13 +02:00
2017-02-22 18:09:39 +00:00
Here's the sample in action as the user makes changes.
2017-08-04 09:27:48 +08:00
下面是此例子中的当用户做出更改时的操作演示:
2019-11-11 14:47:51 -08:00
< div class = "lightbox" >
2017-05-09 23:53:32 +01:00
< img src = 'generated/images/guide/lifecycle-hooks/on-changes-anim.gif' alt = "OnChanges" >
2019-11-11 14:47:51 -08:00
< / div >
2017-02-22 18:09:39 +00:00
2017-03-31 12:23:16 +01:00
The log entries appear as the string value of the *power* property changes.
2017-02-22 18:09:39 +00:00
But the `ngOnChanges` does not catch changes to `hero.name`
That's surprising at first.
2018-03-20 17:15:36 +08:00
当 *power* 属性的字符串值变化时,相应的日志就出现了。
2018-03-20 17:09:18 +08:00
但是 `ngOnChanges` 并没有捕捉到 `hero.name` 的变化。
2017-07-23 11:51:25 +08:00
这是第一个意外。
2017-02-22 18:09:39 +00:00
Angular only calls the hook when the value of the input property changes.
The value of the `hero` property is the *reference to the hero object* .
Angular doesn't care that the hero's own `name` property changed.
The hero object *reference* didn't change so, from Angular's perspective, there is no change to report!
2018-03-20 17:09:18 +08:00
Angular 只会在输入属性的值变化时调用这个钩子。
而 `hero` 属性的值是一个*到英雄对象的引用*。
Angular 不会关注这个英雄对象的 `name` 属性的变化。
这个英雄对象的*引用*没有发生变化,于是从 Angular 的视角看来,也就没有什么需要报告的变化了。
2017-07-23 11:51:25 +08:00
2017-03-27 16:08:53 +01:00
{@a docheck}
2017-04-01 01:57:13 +02:00
2017-03-27 16:08:53 +01:00
## _DoCheck()_
2017-07-23 11:51:25 +08:00
2017-02-22 18:09:39 +00:00
Use the `DoCheck` hook to detect and act upon changes that Angular doesn't catch on its own.
2018-03-20 17:09:18 +08:00
使用 `DoCheck` 钩子来检测那些 Angular 自身无法捕获的变更并采取行动。
2017-07-23 11:51:25 +08:00
2018-07-19 15:00:08 -07:00
< div class = "alert is-helpful" >
2017-03-27 16:08:53 +01:00
2017-05-18 21:31:27 +01:00
Use this method to detect a change that Angular overlooked.
2017-03-27 16:08:53 +01:00
2018-03-20 17:09:18 +08:00
用这个方法来检测那些被 Angular 忽略的更改。
2017-07-23 11:51:25 +08:00
2017-04-10 16:51:13 +01:00
< / div >
2017-02-22 18:09:39 +00:00
2017-03-27 16:08:53 +01:00
The *DoCheck* sample extends the *OnChanges* sample with the following `ngDoCheck()` hook:
2019-02-02 02:29:31 +08:00
*DoCheck* 范例通过下面的 `ngDoCheck()` 钩子扩展了 *OnChanges* 范例:
2017-07-23 11:51:25 +08:00
2019-07-20 20:40:17 +03:00
< code-example path = "lifecycle-hooks/src/app/do-check.component.ts" region = "ng-do-check" header = "DoCheckComponent (ngDoCheck)" > < / code-example >
2017-04-01 01:57:13 +02:00
2017-03-27 16:08:53 +01:00
This code inspects certain _values of interest_ , capturing and comparing their current state against previous values.
2017-02-22 18:09:39 +00:00
It writes a special message to the log when there are no substantive changes to the `hero` or the `power`
so you can see how often `DoCheck` is called. The results are illuminating:
2017-07-23 11:51:25 +08:00
该代码检测一些**相关的值**,捕获当前值并与以前的值进行比较。
2018-03-22 17:18:48 +08:00
当英雄或它的超能力发生了非实质性改变时,就会往日志中写一条特殊的消息。
2018-03-20 17:09:18 +08:00
这样你可以看到 `DoCheck` 被调用的频率。结果非常显眼:
2017-08-04 09:27:48 +08:00
2019-11-11 14:47:51 -08:00
< div class = "lightbox" >
2017-05-09 23:53:32 +01:00
< img src = 'generated/images/guide/lifecycle-hooks/do-check-anim.gif' alt = "DoCheck" >
2019-11-11 14:47:51 -08:00
< / div >
2017-02-22 18:09:39 +00:00
2017-03-27 16:08:53 +01:00
While the `ngDoCheck()` hook can detect when the hero's `name` has changed, it has a frightful cost.
2017-03-31 12:23:16 +01:00
This hook is called with enormous frequency— after _every_
2017-03-27 16:08:53 +01:00
change detection cycle no matter where the change occurred.
2017-02-22 18:09:39 +00:00
It's called over twenty times in this example before the user can do anything.
2018-03-22 17:18:48 +08:00
虽然 `ngDoCheck()` 钩子可以可以监测到英雄的 `name` 什么时候发生了变化。但其开销很恐怖。
2018-03-22 17:24:05 +08:00
这个 `ngDoCheck` 钩子被非常频繁的调用 —— 在*每次*变更检测周期之后,发生了变化的每个地方都会调它。
2017-07-23 11:51:25 +08:00
在这个例子中,用户还没有做任何操作之前,它就被调用了超过二十次。
2017-02-22 18:09:39 +00:00
Most of these initial checks are triggered by Angular's first rendering of *unrelated data elsewhere on the page* .
2017-03-27 16:08:53 +01:00
Mere mousing into another `<input>` triggers a call.
2017-02-22 18:09:39 +00:00
Relatively few calls reveal actual changes to pertinent data.
2017-03-27 16:08:53 +01:00
Clearly our implementation must be very lightweight or the user experience suffers.
2018-03-20 17:09:18 +08:00
大部分检查的第一次调用都是在 Angular 首次渲染该页面中*其它不相关数据*时触发的。
仅仅把鼠标移到其它 `<input>` 中就会触发一次调用。
2017-07-23 11:51:25 +08:00
只有相对较少的调用才是由于对相关数据的修改而触发的。
显然,我们的实现必须非常轻量级,否则将损害用户体验。
2017-03-27 16:08:53 +01:00
{@a afterview}
2017-04-01 01:57:13 +02:00
2017-02-22 18:09:39 +00:00
## AfterView
2017-07-23 11:51:25 +08:00
2017-03-27 16:08:53 +01:00
The *AfterView* sample explores the `AfterViewInit()` and `AfterViewChecked()` hooks that Angular calls
2017-02-22 18:09:39 +00:00
*after* it creates a component's child views.
2018-03-20 17:15:36 +08:00
*AfterView* 例子展示了 `AfterViewInit()` 和 `AfterViewChecked()` 钩子, Angular 会在每次创建了组件的子视图后调用它们。
2017-07-23 11:51:25 +08:00
2017-03-27 16:08:53 +01:00
Here's a child view that displays a hero's name in an `<input>` :
2018-03-20 17:09:18 +08:00
下面是一个子视图,它用来把英雄的名字显示在一个 `<input>` 中:
2017-07-23 11:51:25 +08:00
2019-07-20 20:40:17 +03:00
< code-example path = "lifecycle-hooks/src/app/after-view.component.ts" region = "child-view" header = "ChildComponent" > < / code-example >
2017-04-01 01:57:13 +02:00
2017-02-22 18:09:39 +00:00
The `AfterViewComponent` displays this child view *within its template* :
2018-03-20 17:09:18 +08:00
`AfterViewComponent` 把这个子视图显示*在它的模板中*:
2017-07-23 11:51:25 +08:00
2019-07-20 20:40:17 +03:00
< code-example path = "lifecycle-hooks/src/app/after-view.component.ts" region = "template" header = "AfterViewComponent (template)" > < / code-example >
2017-04-01 01:57:13 +02:00
2017-03-27 16:08:53 +01:00
The following hooks take action based on changing values *within the child view* ,
2017-02-22 18:09:39 +00:00
which can only be reached by querying for the child view via the property decorated with
2017-04-30 22:10:32 +02:00
[@ViewChild ](api/core/ViewChild ).
2017-02-22 18:09:39 +00:00
2018-03-22 17:18:48 +08:00
下列钩子基于*子视图中*的每一次数据变更采取行动,它只能通过带[@ViewChild ](api/core/ViewChild )装饰器的属性来访问子视图。
2017-07-23 11:51:25 +08:00
2019-07-20 20:40:17 +03:00
< code-example path = "lifecycle-hooks/src/app/after-view.component.ts" region = "hooks" header = "AfterViewComponent (class excerpts)" > < / code-example >
2017-02-22 18:09:39 +00:00
2017-03-27 16:08:53 +01:00
{@a wait-a-tick}
2017-04-01 01:57:13 +02:00
2017-02-22 18:09:39 +00:00
### Abide by the unidirectional data flow rule
2017-07-23 11:51:25 +08:00
### 遵循单向数据流规则
2017-03-27 16:08:53 +01:00
The `doSomething()` method updates the screen when the hero name exceeds 10 characters.
2018-03-20 17:09:18 +08:00
当英雄的名字超过 10 个字符时,`doSomething()` 方法就会更新屏幕。
2017-08-04 07:39:15 +08:00
2019-07-20 20:40:17 +03:00
< code-example path = "lifecycle-hooks/src/app/after-view.component.ts" region = "do-something" header = "AfterViewComponent (doSomething)" > < / code-example >
2017-02-22 18:09:39 +00:00
2017-03-27 16:08:53 +01:00
Why does the `doSomething()` method wait a tick before updating `comment` ?
2017-02-22 18:09:39 +00:00
2018-03-20 17:09:18 +08:00
为什么在更新 `comment` 属性之前,`doSomething()` 方法要等上一拍(tick)?
2017-07-23 11:51:25 +08:00
2017-02-22 18:09:39 +00:00
Angular's unidirectional data flow rule forbids updates to the view *after* it has been composed.
Both of these hooks fire _after_ the component's view has been composed.
2018-03-20 17:09:18 +08:00
Angular 的“单向数据流”规则禁止在一个视图已经被组合好*之后*再更新视图。
2017-07-23 11:51:25 +08:00
而这两个钩子都是在组件的视图已经被组合好之后触发的。
2017-03-27 16:08:53 +01:00
Angular throws an error if the hook updates the component's data-bound `comment` property immediately (try it!).
2017-04-26 15:11:02 +03:00
The `LoggerService.tick_then()` postpones the log update
2017-03-27 16:08:53 +01:00
for one turn of the browser's JavaScript cycle and that's just long enough.
2017-04-01 01:57:13 +02:00
2018-03-22 17:18:48 +08:00
如果立即更新组件中被绑定的 `comment` 属性, Angular 就会抛出一个错误(试试!)。
2018-03-20 17:09:18 +08:00
`LoggerService.tick_then()` 方法延迟更新日志一个回合(浏览器 JavaScript 周期回合),这样就够了。
2017-07-23 11:51:25 +08:00
2017-03-27 16:08:53 +01:00
Here's *AfterView* in action:
2017-03-30 20:04:18 +01:00
2018-03-20 17:15:36 +08:00
这里是 *AfterView* 的操作演示:
2017-07-23 11:51:25 +08:00
2019-11-11 14:47:51 -08:00
< div class = "lightbox" >
2017-05-09 23:53:32 +01:00
< img src = 'generated/images/guide/lifecycle-hooks/after-view-anim.gif' alt = "AfterView" >
2019-11-11 14:47:51 -08:00
< / div >
2017-02-22 18:09:39 +00:00
2017-03-27 16:08:53 +01:00
Notice that Angular frequently calls `AfterViewChecked()` , often when there are no changes of interest.
2017-02-22 18:09:39 +00:00
Write lean hook methods to avoid performance problems.
2018-03-20 17:09:18 +08:00
注意, Angular 会频繁的调用 `AfterViewChecked()` ,甚至在并没有需要关注的更改时也会触发。
2017-07-23 11:51:25 +08:00
所以务必把这个钩子方法写得尽可能精简,以免出现性能问题。
2017-03-27 16:08:53 +01:00
{@a aftercontent}
2017-04-01 01:57:13 +02:00
2017-02-22 18:09:39 +00:00
## AfterContent
2017-05-18 21:31:27 +01:00
2017-03-27 16:08:53 +01:00
The *AfterContent* sample explores the `AfterContentInit()` and `AfterContentChecked()` hooks that Angular calls
2017-02-22 18:09:39 +00:00
*after* Angular projects external content into the component.
2018-03-20 17:15:36 +08:00
*AfterContent* 例子展示了 `AfterContentInit()` 和 `AfterContentChecked()` 钩子, Angular 会在外来内容被投影到组件中*之后*调用它们。
2017-07-23 11:51:25 +08:00
2017-03-27 16:08:53 +01:00
{@a content-projection}
2017-04-01 01:57:13 +02:00
2017-02-22 18:09:39 +00:00
### Content projection
2017-07-23 11:51:25 +08:00
### 内容投影
2017-02-22 18:09:39 +00:00
*Content projection* is a way to import HTML content from outside the component and insert that content
into the component's template in a designated spot.
2018-03-20 17:09:18 +08:00
*内容投影*是从组件外部导入 HTML 内容,并把它插入在组件模板中指定位置上的一种途径。
2017-07-23 11:51:25 +08:00
2018-07-19 15:00:08 -07:00
< div class = "alert is-helpful" >
2017-03-27 16:08:53 +01:00
2017-05-18 21:31:27 +01:00
AngularJS developers know this technique as *transclusion* .
2017-03-27 16:08:53 +01:00
2018-03-20 17:15:36 +08:00
AngularJS 的开发者大概知道一项叫做 *transclusion* 的技术,对,这就是它的马甲。
2017-03-27 16:08:53 +01:00
2017-04-10 16:51:13 +01:00
< / div >
2017-03-27 16:08:53 +01:00
2017-03-11 15:36:40 +00:00
Consider this variation on the [previous _AfterView_ ](guide/lifecycle-hooks#afterview ) example.
2017-02-22 18:09:39 +00:00
This time, instead of including the child view within the template, it imports the content from
2017-03-27 16:08:53 +01:00
the `AfterContentComponent` 's parent. Here's the parent's template:
2020-01-11 18:10:12 +08:00
对比[前面的 AfterView ](guide/lifecycle-hooks#afterview ) 例子考虑这个变化。
2018-03-22 17:18:48 +08:00
这次不再通过模板来把子视图包含进来,而是改为从 `AfterContentComponent` 的父组件中导入它。下面是父组件的模板:
2017-07-23 11:51:25 +08:00
2019-07-20 20:40:17 +03:00
< code-example path = "lifecycle-hooks/src/app/after-content.component.ts" region = "parent-template" header = "AfterContentParentComponent (template excerpt)" > < / code-example >
2017-04-01 01:57:13 +02:00
2018-05-08 13:57:47 +08:00
Notice that the `<app-child>` tag is tucked between the `<after-content>` tags.
2017-02-22 18:09:39 +00:00
Never put content between a component's element tags *unless you intend to project that content
into the component*.
2018-05-08 13:57:47 +08:00
注意,`<app-child>` 标签被包含在 `<after-content>` 标签中。
2018-03-22 17:18:48 +08:00
永远不要在组件标签的内部放任何内容 —— *除非你想把这些内容投影进这个组件中* 。
2017-07-23 11:51:25 +08:00
2017-02-22 18:09:39 +00:00
Now look at the component's template:
2020-01-11 18:10:12 +08:00
现在来看该组件的模板:
2017-07-23 11:51:25 +08:00
2019-07-20 20:40:17 +03:00
< code-example path = "lifecycle-hooks/src/app/after-content.component.ts" region = "template" header = "AfterContentComponent (template)" > < / code-example >
2017-04-01 01:57:13 +02:00
2017-02-22 18:09:39 +00:00
The `<ng-content>` tag is a *placeholder* for the external content.
It tells Angular where to insert that content.
2018-05-08 13:57:47 +08:00
In this case, the projected content is the `<app-child>` from the parent.
2017-03-30 20:04:18 +01:00
2018-03-20 17:09:18 +08:00
`<ng-content>` 标签是外来内容的*占位符*。
它告诉 Angular 在哪里插入这些外来内容。
2018-05-08 13:57:47 +08:00
在这里,被投影进去的内容就是来自父组件的 `<app-child>` 标签。
2017-07-23 11:51:25 +08:00
2019-11-11 14:47:51 -08:00
< div class = "lightbox" >
2017-05-09 23:53:32 +01:00
< img src = 'generated/images/guide/lifecycle-hooks/projected-child-view.png' alt = "Projected Content" >
2019-11-11 14:47:51 -08:00
< / div >
2017-02-22 18:09:39 +00:00
2018-07-19 15:00:08 -07:00
< div class = "alert is-helpful" >
2017-03-27 16:08:53 +01:00
2017-05-18 21:31:27 +01:00
The telltale signs of *content projection* are twofold:
2017-04-01 01:57:13 +02:00
2018-03-03 21:06:01 +08:00
下列迹象表明存在着*内容投影*:
2017-07-23 11:51:25 +08:00
2017-04-01 01:57:13 +02:00
* HTML between component element tags.
2018-03-20 17:09:18 +08:00
在组件的元素标签中有 HTML
2017-07-23 11:51:25 +08:00
2018-03-03 21:06:01 +08:00
* The presence of `<ng-content>` tags in the component's template.
2018-03-20 17:09:18 +08:00
组件的模板中出现了 `<ng-content>` 标签
2017-03-27 16:08:53 +01:00
2017-04-10 16:51:13 +01:00
< / div >
2017-03-27 16:08:53 +01:00
{@a aftercontent-hooks}
2017-04-01 01:57:13 +02:00
2017-03-27 16:08:53 +01:00
### AfterContent hooks
2017-04-01 01:57:13 +02:00
2018-03-20 17:09:18 +08:00
### AfterContent 钩子
2017-07-23 11:51:25 +08:00
2018-03-03 21:06:01 +08:00
*AfterContent* hooks are similar to the *AfterView* hooks.
2017-03-27 16:08:53 +01:00
The key difference is in the child component.
2017-02-22 18:09:39 +00:00
2018-03-20 17:15:36 +08:00
*AfterContent* 钩子和 *AfterView* 相似。关键的不同点是子组件的类型不同。
2017-07-23 11:51:25 +08:00
2017-02-22 18:09:39 +00:00
* The *AfterView* hooks concern `ViewChildren` , the child components whose element tags
appear *within* the component's template.
2018-03-20 17:15:36 +08:00
*AfterView* 钩子所关心的是 `ViewChildren` ,这些子组件的元素标签会出现在该组件的模板*里面*。
2017-07-23 11:51:25 +08:00
2017-02-22 18:09:39 +00:00
* The *AfterContent* hooks concern `ContentChildren` , the child components that Angular
projected into the component.
2018-03-20 17:15:36 +08:00
*AfterContent* 钩子所关心的是 `ContentChildren` ,这些子组件被 Angular 投影进该组件中。
2017-07-23 11:51:25 +08:00
2017-03-27 16:08:53 +01:00
The following *AfterContent* hooks take action based on changing values in a *content child* ,
which can only be reached by querying for them via the property decorated with
2017-04-30 22:10:32 +02:00
[@ContentChild ](api/core/ContentChild ).
2017-07-23 11:51:25 +08:00
2018-03-22 17:18:48 +08:00
下列 *AfterContent* 钩子基于*子级内容*中值的变化而采取相应的行动,它只能通过带有[@ContentChild ](api/core/ContentChild )装饰器的属性来查询到“子级内容”。
2017-08-04 07:39:15 +08:00
2019-07-20 20:40:17 +03:00
< code-example path = "lifecycle-hooks/src/app/after-content.component.ts" region = "hooks" header = "AfterContentComponent (class excerpts)" > < / code-example >
2018-03-03 21:06:01 +08:00
2017-02-22 18:09:39 +00:00
{@a no-unidirectional-flow-worries}
2017-04-01 01:57:13 +02:00
2017-03-27 16:08:53 +01:00
### No unidirectional flow worries with _AfterContent_
2017-02-22 18:09:39 +00:00
2018-03-20 17:15:36 +08:00
### 使用 **AfterContent** 时,无需担心单向数据流规则
2017-07-23 11:51:25 +08:00
2017-03-27 16:08:53 +01:00
This component's `doSomething()` method update's the component's data-bound `comment` property immediately.
2017-03-11 15:36:40 +00:00
There's no [need to wait ](guide/lifecycle-hooks#wait-a-tick ).
2017-02-22 18:09:39 +00:00
2018-03-20 17:09:18 +08:00
该组件的 `doSomething()` 方法立即更新了组件被绑定的 `comment` 属性。
2017-07-23 11:51:25 +08:00
它[不用等 ](guide/lifecycle-hooks#wait-a-tick )下一回合。
2017-02-22 18:09:39 +00:00
Recall that Angular calls both *AfterContent* hooks before calling either of the *AfterView* hooks.
Angular completes composition of the projected content *before* finishing the composition of this component's view.
2017-07-23 11:51:25 +08:00
There is a small window between the `AfterContent...` and `AfterView...` hooks to modify the host view.
2018-03-20 17:15:36 +08:00
回忆一下, Angular 在每次调用 *AfterView* 钩子之前也会同时调用 *AfterContent* 。
2018-03-20 17:09:18 +08:00
Angular 在完成当前组件的视图合成之前,就已经完成了被投影内容的合成。
2018-03-22 17:18:48 +08:00
所以你仍然有机会去修改那个视图。