Remove a view from the back history - Ionic2

前端 未结 3 1509
南旧
南旧 2021-02-02 16:01

Anyone knows how to remove a view from the back history (or navigation stack) in ionic2?

In Ionic 1 I solved this with

this.$ionicHistory.nextViewOptions         


        
3条回答
  •  礼貌的吻别
    2021-02-02 16:47

    I got the same issue with Ionic 3.
    So, only two steps to reset history:

    // ...
    constructor(public navCtrl: NavController) { }
    // ...
    this.navCtrl.setRoot(NewPageWithoutPrev);
    this.navCtrl.popToRoot();
    // ...
    

    Links:
    https://ionicframework.com/docs/api/navigation/NavController/#setRoot
    https://ionicframework.com/docs/api/navigation/NavController/#popToRoot

提交回复
热议问题