Remove a view from the back history - Ionic2

前端 未结 3 1508
南旧
南旧 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:38

    obrejacatalin on the https://forum.ionicframework.com/t/solved-disable-back-in-ionic2/57457 found the solution

    this.nav.push(TabsPage).then(() => {
      const index = this.nav.getActive().index;
      this.nav.remove(0, index);
    });
    

    so I guess it's important to push the next page first, wait for the promise answer and then remove the current view

提交回复
热议问题