Clicking the device back button closes the app instead of going back to previous page

后端 未结 5 1361
北海茫月
北海茫月 2020-11-30 06:04

If click any ion-item it open the desired page but if i click device back button it close the app rather than going back to previous page in android:

Th

5条回答
  •  失恋的感觉
    2020-11-30 06:39

    This prevents the event from spreading, otherwise it did not work.

    Code by: https://stackoverflow.com/users/5378702/andre-kreienbring

    $ionicPlatform.registerBackButtonAction(function (event) {
      if(condition){
        navigator.app.exitApp(); //<-- remove this line to disable the exit
      }
      else {
        navigator.app.backHistory();
      }
      throw "PreventBackButton";
    }, 100);
    

提交回复
热议问题