angular-local-storage

can't logout from ionic

牧云@^-^@ 提交于 2019-11-30 21:19:51
Hi I have an issue with ionic login and logout. Each time after logout, i can still click the back button and it will bring me back to my previous page. may i know how to clear or delete session when logout so that user unable to go back to previous page from the login? var default_stat; $scope.logout = function(){ $ionicLoading.show({template:'Logging out....'}); $localstorage.set('loggin_state', ''); $state.go('login'); $ionicLoading.hide(); $ionicHistory.clearHistory(); $ionicHistory.clearCache(); }; during login i use localstorage to indicate user has logged in $localstorage.set('loggin