Disable hardware back button in Ionic application?

后端 未结 8 979
暗喜
暗喜 2020-12-24 13:21

I\'m trying to disable the back button on my Cordova app. I\'m using AngularJS + Ionic Framework. I found topics about this and tried the code bellow, but it has absolutely

8条回答
  •  既然无缘
    2020-12-24 13:53

    For Ionic 3:

    // root component
    export class MyApp {
    
      constructor(platform: Platform) {
        platform.ready().then(() => {
          platform.registerBackButtonAction(() => {
            this.customBackButtonHandler();
          }, 100)
        });
      }
    
      customBackButtonHandler() {
        ...
      }
    
    }
    

提交回复
热议问题