详情:https://angular.cn/guide/lifecycle-hooks
组件初始化触发
ngOnInit(){console.log("init")}
wechat-- onLoadvue -- mountedReact --componentDidMountAngular--ngOnInit // 组件初始化时触发
生命周期钩子
ngOnChanges()ngOnInit()ngDoCheck()ngAfterContentInit()ngAfterContentChecked()ngAfterViewInit()ngAfterViewChecked()ngOnDestroy()
