Ionic 2:popToRoot()不会重定向到根组件(主页)

时间:2016-09-12 17:08:37

标签: ionic2

此功能中的所有功能都正常,但 this.nav.popToRoot()在该位置无法正常工作。 如果我将它移动到函数的开头,它可以正常工作。 没有人对此有合理的解释。

提前感谢您的时间和考虑。

以下是booking.ts组件中的代码:

book(){
  let newReservation = {
    _id: this.room._id,
    from: this.details.from.substring(0,10),
    to: this.details.to.substring(0,10)
  }

  let loading = this.loadingCtrl.create({
    content: "Booking room..."
  });

  loading.present();

  this.roomsService.reserveRoom(newReservation).then((res) => {
    loading.dismiss();
    console.log("Room reserved successfully ... ");
    this.nav.popToRoot();
  }, (err) => {
    console.log(err);
  });
}

1 个答案:

答案 0 :(得分:8)

对我来说情况也是如此,但我设法替换了整个历史堆栈,在我的情况下,我不需要保留历史堆栈,这就是我这样做的方式:

true

在承诺内部运作。