How can i enable device backbutton in ionic?
问题 I have disabled backbutton for some condition by backbutton register action event like this: $ionicPlatform.registerBackButtonAction(function (event) { if (condition) { event.preventDefault(); $ionicHistory.nextViewOptions({ disableBack: true }); } else { $ionicHistory.goBack(); } }, 800); So now how can i enable that device backbutton again ? Because its still disabled and not going in previous view too. 回答1: you need to try this var lastTimeBackPress = 0; var timePeriodToExit = 2000;