ionic2之你不知道的页面跳转

1.跳转时删除当前页面

this.navCtrl.push(需要跳转的页面);

this.navCtrl.removeView(this.viewCtrl, { animate: false });

2.返回多层页面

let index = this.navCtrl.indexOf(this.viewCtrl);

this.navCtrl.remove(index - 1, 你需要返回页面的数量);

你可能感兴趣的:(ionic2之你不知道的页面跳转)