在离子中如何在设备后退按钮打开模态时调用方法?

时间:2017-05-12 18:38:49

标签: typescript ionic2

在休假代码中,我尝试在打开模态时调用设备后退按钮录制方法。

platform.ready().then(() => {
       platform.registerBackButtonAction(() => {
         if(this.navCtrl.canGoBack()){
              this.navCtrl.pop();
            }else{
              this.closeModal(this.closeme)
            }

       });

但它不起作用

0 个答案:

没有答案