我有一个angularjs Web应用程序。我试图在注销后不允许用户使用浏览器后退按钮转到上一页。我希望向用户展示“请登录以继续”的消息。我无法得到任何想法。请建议。
答案 0 :(得分:1)
您可以使用以下两种方式禁用对上一页的访问:
$stateChangeStart
,只要状态发生变化,此方法就会调用,查找令牌,如果找不到令牌,则将用户重定向到登录。use resolve
:在相应状态的路由发生之前,将获得调用,因此内部解析<强>方法一:强>
$rootScope.$on('$stateChangeStart',
function(event, toState, toParams, fromState, fromParams){
// check if user is navigating to anypage other than login, if so check for token, if token is not present redirect to login page
});
<强>方法2:强>
$stateProvider.state("dashboard", {
resolve: {
// check if user is navigating to anypage other than login, if so check for token, if token is not present redirect to login page by using defer
}
})
答案 1 :(得分:0)
您可以实施类似的功能,以便对不同的内容进行访问控制。请注意,您还必须确保后端安全。
在为ui.router定义状态的地方,您可以添加用户定义的数据。例如:
angular.module("app", ['ui.router']).config(['$stateProvider', function($stateProvider){
$stateProvider.state('yourSecureState', {
url: '/secure-state',
templateUrl: '/app/views/secure.html',
controller: 'SecureStateController',
data: {
accessLevel: "secured-feature",
title: 'Secured State'
}
});
}]);
使用此附加信息,您可以检查身份验证服务是否具有所需的访问级别:
angular.module('app').factory('AuthService', ['$rootScope', function($rootScope){
$rootScope.$on('$stateChangeStart', function (event, nextState) {
if (nextState.data && nextState.data.accessLevel && !service.isAuthorized(nextState.data.accessLevel)) {
event.preventDefault();
alert("Not Authorized");
}
});
var service = {
isAuthorized: function(accessLevel) {
//your code here:
}
};
return service;
}]);
答案 2 :(得分:0)
在这篇mdn文章中,我们解释了如何操纵浏览器历史记录:
在我的一个旧项目中,我用它来创建一个&#34;到上一页&#34;按钮。
答案 3 :(得分:0)
防止默认和window.history.forward()的组合解决了这个问题。
$rootScope.$on('$stateChangeStart',
function(event, toState, toParams, fromState, fromParams){
event.preventDefault();
window.history.forward();
});
想法是event.preventDefault()删除历史堆栈。所以如果我们从第1页开始 - >第2页 - &gt; page3,preventDefault只在到达主页时才有效。需要使用forward()来重定向到同一页面。
答案 4 :(得分:0)
以下代码会禁用整个应用中的浏览器“后退”按钮:
var allowNav = false;
var checkNav = false;
$rootScope.$on(
'$stateChangeSuccess',
function (event, toState, toStateParams, fromState, fromStateParams) {
allowNav = checkNav;
checkNav = true;
}
);
$rootScope.$on(
'$locationChangeStart',
function (event, next, current) {
// Prevent the browser default action (Going back)
if (checkNav) {
if (!allowNav) {
event.preventDefault();
} else {
allowNav = false;
}
}
}
);
答案 5 :(得分:-1)
让我们说当用户登录到您的应用时,系统会生成一个身份验证令牌,其中包含表明用户已通过身份验证的数据。因此,由于它在页面上执行的任何控制器都需要为您的auth-token进行litle验证。如果此令牌不存在,则重定向到登录页面。我想,你不需要阻止任何后退按钮。
// First lines inside your controller.
if (!$tokenManager.getToken()) { // Get token.
$location.path('/login');
}
流程将是:
答案 6 :(得分:-2)
app.config(["$routeProvider", function($routeProvider) {
return $routeProvider.when("/", {
redirectTo: "/login"
}).when("/dashboard", {
templateUrl: "views/dashboard.html"
}).when("/login", {
templateUrl: "views/login.html"
}).when("/pages/openAcc", {
templateUrl: "views/pages/openAcc.html"
}).when("/pages/docUpload", {
templateUrl: "views/pages/docUpload.html"
}).when("/pages/listview", {
templateUrl: "views/pages/listview.html"
}).otherwise({
redirectTo: "/404"
})
}]) .run(function($rootScope, $location) {
$rootScope.$on("$routeChangeStart", function (event, next, current) {
if (!(next.templateUrl == "views/login.html")) {
$location.path("/login");
}
})
})