Angular2中constructor和ngOninit的使用讲解

这篇文章主要介绍了Angular2中constructor和ngOninit的使用讲解,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教

constructor和ngOninit的使用

Angular中根据适用场景定义了很多生命周期函数,其本质上是事件的响应函数,其中最常用的就是ngOnInit。在TypeScript或ES6中还存在着名为constructor的构造函数,开发过程中经常会混淆二者,两者在含义上有部分重复,下面主要解析一下它们的区别和各自的使用场景。

区别

constructor:Es6引入类的概念后出来的东西,是类自身的属性,并不属于angular,所以Angular没有办法控制constructor。

constructor会在类生成实例时调用:

import {Component} from '@angular/core';   @Component({     selector: 'hello-world',     templateUrl: 'hello-world.html' })   class HelloWorld {     constructor() {         console.log('constructor被调用,但和Angular无关');     } }   // 生成类实例,此时会调用constructor new HelloWorld();

所以就出现了ngOnInit;

ngOnInit的作用根据官方的说法:

ngOnInit用于在Angular第一次显示数据绑定和设置指令/组件的输入属性之后,初始化指令/组件

所以总的来说:

1.ngOnChanges当数据绑定输入属性的值发生变化时候调用; 

2.ngOnInit( )在第一次ngOnChanges( )后调用;说明这两个方法一般是配合工作的; 

3.ngOnInit()用于Angular获取输入属性后初始化组件,此方法是钩子方法,在ngOnChanges()方法被调用之后使用; 

4.ngOnInit()钩子只会被调用一次;

ngOnInit属于Angular生命周期的一部分,其在第一轮ngOnChanges完成之后调用,并且只调用一次:

import {Component, OnInit} from '@angular/core';   @Component({     selector: 'hello-world',     templateUrl: 'hello-world.html' })   class HelloWorld implements OnInit {     constructor() {       }       ngOnInit() {         console.log('ngOnInit被Angular调用');     } }

适用场景

  • constructor
  • 即使Angular定义了ngOnInit,constructor也有其用武之地,其主要作用是注入依赖,特别是在TypeScript开发Angular工程时,经常会遇到类似下面的代码:
import { Component, ElementRef } from '@angular/core';   @Component({     selector: 'hello-world',     templateUrl: 'hello-world.html' }) class HelloWorld {     constructor(private elementRef: ElementRef) {         // 在类中就可以使用this.elementRef了     } }

在constructor中注入的依赖,就可以作为类的属性被使用了。

  • ngOnInit
  • ngOnInit纯粹是通知开发者组件/指令已经被初始化完成了,此时组件/指令上的属性绑定操作以及输入操作已经完成,也就是说在ngOnInit函数中我们已经能够操作组件/指令中被传入的数据了:
// hello-world.ts import { Component, Input, OnInit } from '@angular/core';   @Component({     selector: 'hello-world',     template: `

Hello {{name}}!

` }) class HelloWorld implements OnInit {     @Input()     name: string;       constructor() {         // constructor中还不能获取到组件/指令中被传入的数据         console.log(this.name);     // undefined     }       ngOnInit() {         // ngOnInit中已经能够获取到组件/指令中被传入的数据         console.log(this.name);     // 传入的数据     } }

所以,我们可以在ngOnInit中做一些初始化的操作,可以在组件的ngOnInit中操作父组件传递到子组件的一些shu数据;

所以,开发中我们经常在ngOnInit做一些初始化的工作,而这些工作尽量要避免在constructor中进行,constructor中应该只进行依赖注入而不是进行真正的业务操作。

ngOnInit函数学习小记

ngOnInit方法只是初始化angular的组件和指令,并不是真正的dom加载完成

例子

html代码:

typescript代码:

这个时候oBox1无法获取到DOM节点,这是因为ngOnInit方法只是初始化angular的组件和指令,并不是真正的dom加载完成。

如果要获取到oBox1,可以在ngAfterViewInit方法里获取,该方法是指页面渲染完成之后触发!

以上为个人经验,希望能给大家一个参考,也希望大家多多支持0133技术站。

以上就是Angular2中constructor和ngOninit的使用讲解的详细内容,更多请关注0133技术站其它相关文章!

赞(0) 打赏
未经允许不得转载:0133技术站首页 » Angular.js 答疑