我都尝试过$locationChangeStart
and $routeChangeStart
,但它们都不起作用 - 它们要么导致闪烁(switchign url),要么根本不起作用。我在这里做错了什么?
$rootScope.$on('$locationChangeStart', function (event,future,current) {
if (!user.isAuthenticated()){
$location.path('/login');
event.preventDefault();
}
});
$rootScope.$on('$routeChangeStart', function() {
if (!user.isAuthenticated()) {
$location.path('/login');
}
});