如何在ionic2中的pop()之后重新加载离子页面 [英] How to reload the ion-page after pop() in ionic2

查看:141
本文介绍了如何在ionic2中的pop()之后重新加载离子页面的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有2页 Page1和Page2 。我在Page2中使用了 this.nav.pop(),它将弹出Page2,Page1将启用,但我想刷新Page1。
提前谢谢你。

I have 2 pages Page1 and Page2. I have used this.nav.pop() in Page2 and it will pop the Page2 and Page1 will enable but i want to refresh the Page1. Thank you in advance.

推荐答案

您可以将父页面与导航推送一起传递。这样你就可以将父页面作为navParamter。
父页中的

you could pass the parent page along with the nav push. that way you could accces the parent page as a navParamter.
in parent page:

 goToChildPage() {
    this.navCtrl.push(ChildPage, { "parentPage": this });
 }

子页面父页面上的调用函数

this.navParams.get("parentPage").someFnToUpdateParent();
  //or
this.navParams.get("parentPage").someFnToRefreshParent();

这篇关于如何在ionic2中的pop()之后重新加载离子页面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆