Angular 组件生命周期初学者指南

angular 组件生命周期初学者指南

在深入研究生命周期挂钩之前,有必要对一些核心主题有基本的了解。根据 angular 文档:

先决条件 在使用生命周期钩子之前,您应该对以下内容有基本的了解: typescript 编程 angular 应用程序设计基础知识,如 angular 概念 中所述

一旦您熟悉了这些先决条件,您就可以探索 angular 提供的强大的生命周期钩子了。

angular 组件生命周期是 angular 组件如何创建、更新和销毁的核心。了解这些生命周期使开发人员能够控制组件在其整个生命周期中的行为,从而增强功能和用户体验。在本文中,我们将分解 angular 组件生命周期挂钩,提供示例并解释其典型用例。

angular 中的生命周期钩子是什么?

angular 提供了多个生命周期钩子,开发人员可以利用这些钩子在组件生命周期的不同阶段执行特定代码。从初始化组件到销毁它,这些钩子帮助管理组件的状态、行为和资源清理。

这是 angular 中所有生命周期钩子的列表:

  1. ngonchanges
  2. ngoninit
  3. ngdocheck
  4. ngaftercontentinit
  5. ngaftercontentchecked
  6. ngafterviewinit
  7. ngafterviewchecked
  8. ngondestroy

每个钩子都有特定的用途,并在组件生命周期的特定时间被调用。让我们深入了解每一个。


1、ngonchanges

用途:输入属性更改时调用。

这是构建组件后调用的第一个生命周期钩子。每次输入属性的值发生变化时都会触发 ngonchanges 方法。当您想要执行代码以响应组件绑定输入属性的更改时,它特别有用。

示例:

import { component, input, onchanges, simplechanges } from '@angular/core';

@component({
  selector: 'app-sample',
  template: `<p>{{ data }}</p>`
})
export class samplecomponent implements onchanges {
  @input() data: string;

  ngonchanges(changes: simplechanges): void {
    console.log('data changed:', changes.data.currentvalue);
  }
}

2.ngoninit

用途:在组件第一次 ngonchanges 之后调用一次。

ngoninit 钩子是大部分初始化代码所在的地方。这是初始化属性、设置任何所需订阅或进行组件所依赖的 http 调用的好地方。

示例:

import { component, oninit } from '@angular/core';

@component({
  selector: 'app-sample',
  template: `<p>{{ info }}</p>`
})
export class samplecomponent implements oninit {
  info: string;

  ngoninit(): void {
    this.info = 'component initialized!';
  }
}

3.ngdocheck

用途:在每次更改检测运行期间调用。

ngdocheck 钩子允许您实现自己的变更检测算法。这对于跟踪 angular 本身无法检测到的对象的深层变化非常有用。不过,请谨慎使用,如果使用不当,可能会影响性能。

示例:

import { component, docheck } from '@angular/core';

@component({
  selector: 'app-sample',
  template: `<p>{{ count }}</p>`
})
export class samplecomponent implements docheck {
  count: number = 0;

  ngdocheck(): void {
    console.log('change detection running');
    this.count++;
  }
}

4.ngaftercontentinit

用途:在第一次 ngdocheck 之后调用一次。

这个钩子在 angular 将外部内容投影到组件中后被调用。它对于用于在模板中包含外部内容的组件特别有用。

示例:

import { component, aftercontentinit } from '@angular/core';

@component({
  selector: 'app-sample',
  template: `<ng-content></ng-content>`
})
export class samplecomponent implements aftercontentinit {
  ngaftercontentinit(): void {
    console.log('content projected');
  }
}

5.ngaftercontentchecked

用途:每次检查投影内容后调用。

每次 angular 检查投影到组件中的内容时都会执行 ngaftercontentchecked 生命周期钩子。它与 ngaftercontentinit 类似,但在每个更改检测周期后运行。

示例:

import { component, aftercontentchecked } from '@angular/core';

@component({
  selector: 'app-sample',
  template: `<ng-content></ng-content>`
})
export class samplecomponent implements aftercontentchecked {
  ngaftercontentchecked(): void {
    console.log('projected content checked');
  }
}

6.ngafterviewinit

用途:在第一个 ngaftercontentchecked 之后调用一次。

此生命周期挂钩用于在组件的视图(以及任何子视图)初始化后执行操作。它通常用于在 angular 渲染视图的子视图后操作或读取它们的属性。

示例:

import { component, afterviewinit, viewchild, elementref } from '@angular/core';

@component({
  selector: 'app-sample',
  template: `<p #textelement>hello, world!</p>`
})
export class samplecomponent implements afterviewinit {
  @viewchild('textelement') textelement: elementref;

  ngafterviewinit(): void {
    console.log('view initialized:', this.textelement.nativeelement.textcontent);
  }
}

7.ngafterviewchecked

用途:每次检查组件视图后调用。

这个钩子在 angular 检查组件视图的更新后被调用。它与 ngafterviewinit 类似,但在每个更改检测周期后运行。这可用于应用依赖于视图中更新的逻辑。

示例:

import { component, afterviewchecked } from '@angular/core';

@component({
  selector: 'app-sample',
  template: `<p>hello, angular!</p>`
})
export class samplecomponent implements afterviewchecked {
  ngafterviewchecked(): void {
    console.log('view checked');
  }
}

8.ngondestroy

用途: angular 销毁组件之前调用。

ngondestroy 钩子是执行清理任务的地方,例如取消订阅可观察对象、分离事件处理程序或释放可能导致内存泄漏的资源。

示例:

import { Component, OnDestroy } from '@angular/core';

@Component({
  selector: 'app-sample',
  template: `<p>Component loaded</p>`
})
export class SampleComponent implements OnDestroy {
  ngOnDestroy(): void {
    console.log('Component is about to be destroyed');
  }
}

结论

有效地理解和使用这些生命周期挂钩可以让您对 angular 应用程序进行细粒度的控制。从 ngoninit 中初始化数据到 ngondestroy 中清理资源,生命周期钩子提供了动态应用程序所需的基本控制。

在下一篇文章中,我们将深入探讨这些钩子如何在现实世界的 angular 应用程序中协同工作,展示更复杂的生命周期和交互的示例。

以上就是Angular 组件生命周期初学者指南的详细内容,更多请关注其它相关文章!