Angular 2 AfterViewInit
示例
在初始化组件视图及其任何子视图之后触发。对于Angular2生态系统之外的插件,这是一个有用的生命周期挂钩。例如,您可以使用此方法基于Angular2呈现的标记来初始化jQuery日期选择器。
import { Component, AfterViewInit } from '@angular/core';
@Component({
selector: 'so-afterviewinit-component',
templateUrl: 'afterviewinit-component.html',
styleUrls: ['afterviewinit-component.']
})
class AfterViewInitComponent implements AfterViewInit {
ngAfterViewInit(): void {
console.log('This event fire after the content init have been loaded!');
}
}