本文介绍了加载页面内容的事件(Ionic 2)?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用NavController 我更改页面,我需要知道何时加载新页面,是否有任何事件?
I am using NavController http://ionicframework.com/docs/v2/api/components/nav/NavController/ and I change page and I need to know when new page loaded, is there any event?
推荐答案
当然,您可以利用Ionic2中的生命周期事件。
Sure, you have Lifecycle events in Ionic2 that you can take advantage of.
- ionViewDidLoad
- ionViewWillEnter
- ionViewDidEnter
- ionViewWillLeave
- ionViewDidLeave
- ionViewWillUnload
- ionViewDidLoad
- ionViewWillEnter
- ionViewDidEnter
- ionViewWillLeave
- ionViewDidLeave
- ionViewWillUnload
例如,你可以找到更多信息:
Example, you can find more info here:
ionViewDidLoad() {
console.log("I'm alive!");
}
ionViewWillLeave() {
console.log("Looks like I'm about to leave :(");
}
这篇关于加载页面内容的事件(Ionic 2)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!