如果按下后退按钮,如何重新加载位于<ion-content>
标记下的内容?
答案 0 :(得分:8)
答案是正确的,然而,它已经过时了。这是更新后的答案。
链接到Life Cycle只需向下滚动即可看到它。
示例:
ionViewWillEnter() {
console.log('Runs when the page is about to enter and become the active page.');
}
答案 1 :(得分:7)
只需在您要返回的视图中使用View Lifecycle Hook,例如:
http://cdnjs.cloudflare.com/ajax/libs/jquery-form-validator/2.3.19/jquery.form-validator.js
或者您在要离开的页面上使用生命周期钩子,然后用onPageWillLeave()替换onPageWillEnter()
对于离子β8,生命周期事件改变了他们的名字。查看official ionic blog以获取生命周期事件的完整列表。