【发布时间】:2018-07-18 02:49:02
【问题描述】:
我正在尝试在我的角度材质代码中使用
【问题讨论】:
标签: ionic-framework material-design angular-material
我正在尝试在我的角度材质代码中使用
【问题讨论】:
标签: ionic-framework material-design angular-material
Angular 提供了一些开箱即用的生命周期挂钩。也许您可以使用与ionViewDidLoad 非常相似的onInit。只要您使用 Angular 2 或更高版本,就可以使用 Angular 生命周期挂钩。
import { OnInit } from '@angular/core';
export class YourComponent implements OnInit {
// implement OnInit's `ngOnInit` method
ngOnInit() {
console.log('component inited');
}
}
请注意,您必须实现 OnInit(而不是简单地在 Ionic 中添加您的组件的方法)
【讨论】: