按下后退按钮时,如何重新加载位于 <ion-content> 标签下的内容?

最佳答案

只需在您要返回的 View 中使用 View Lifecycle Hook 即可,例如:

onPageWillEnter() {
      // You can execute what you want here and it will be executed right before you enter the view
    }

或者您在要离开的页面上使用生命周期 Hook ,然后将 onPageWillEnter() 替换为 onPageWillLeave()

在 ionic beta 8 中,生命周期事件更改了名称。查看 official ionic blog 以获取生命周期事件的完整列表。

关于ionic-framework - Ionic2:按下后退按钮时重新加载 ionic 内容,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37380549/

10-16 07:14