清除navpush的堆栈可以使用
方法一:ionic3文档
this.navCtrl.popToRoot(); //直接返回根组件
方法二:
push 后再删除之前页面即可。 this.navCtrl.push(TabsPage).then(() => { const startIndex = this.navCtrl.getActive().index - 1; this.navCtrl.remove(startIndex, 1); });
方法二原文:
https://segmentfault.com/a/1190000009924710