在我的AngularJS应用程序中,当用户未登录时,我将route
重定向到特定页面。为此,我在$rootScope
上使用变量。
现在我想在用户登录时阻止浏览器的后退按钮。我想将其重定向到特定页面(registration
视图)。问题是我不知道是否有后退按钮事件。
我的代码是:
angular.module('myApp',[...]
//Route configurations
}])
.run(function($rootScope, $location){
$rootScope.$on('$routeChangeStart', function(event, next, current){
if(!$rootScope.loggedUser) {
$location.path('/register');
}
});
$rootScope.$on('$locationChangeStart', function(event, next, current){
console.log("Current: " + current);
console.log("Next: " + next);
});
});
所以在$locationChangeStart
我会写一个伪代码,如:
if (event == backButton){
$location.path('/register');
}
有可能吗?
一个天真的解决方案是编写一个函数来检查next
和current
的顺序是否错误,检测用户是否返回。
还有其他解决方案吗?我正以错误的方式解决问题?
答案 0 :(得分:6)
我找到了一个比我想象的更容易的解决方案。我在$rootScope
中的一个对象上注册实际位置,并在每个位置更改我用新的位置更改。通过这种方式,我可以检测用户是否回到历史记录中。
angular.module('myApp',[...], {
//Route configurations
}])
.run(function($rootScope, $location) {
$rootScope.$on('$routeChangeStart', function(event, next, current) {
if(!$rootScope.loggedUser) {
$location.path('/register');
}
});
$rootScope.$on('$locationChangeSuccess', function() {
$rootScope.actualLocation = $location.path();
});
$rootScope.$watch(function() { return $location.path() },
function(newLocation, oldLocation) {
if($rootScope.actualLocation == newLocation) {
$location.path('/register');
}
});
});
});