1.跳转时删除当前页面
this.navCtrl.push(需要跳转的页面);
this.navCtrl.removeView(this.viewCtrl, { animate: false });
2.返回多层页面
let index = this.navCtrl.indexOf(this.viewCtrl);
this.navCtrl.remove(index - 1, 你需要返回页面的数量);
this.navCtrl.push(需要跳转的页面);
this.navCtrl.removeView(this.viewCtrl, { animate: false });
let index = this.navCtrl.indexOf(this.viewCtrl);
this.navCtrl.remove(index - 1, 你需要返回页面的数量);
本文标题:ionic2之你不知道的页面跳转
本文链接:https://www.haomeiwen.com/subject/dzrklftx.html
网友评论