ionic2之你不知道的页面跳转
2018-04-23 本文已影响9人
武昌鱼艾特222
1.跳转时删除当前页面
this.navCtrl.push(需要跳转的页面);
this.navCtrl.removeView(this.viewCtrl, { animate: false });
2.返回多层页面
let index = this.navCtrl.indexOf(this.viewCtrl);
this.navCtrl.remove(index - 1, 你需要返回页面的数量);