基本思想是使用 Http Response Interceptor 来重定向我的网页,如果它给出 401 状态。但我不知道我这样做是否正确:我认为它是这样的,但我似乎比看起来更困难。目前我找到了一个循环依赖项。
我需要将拦截器推到其他地方吗?拦截器如何知道我是否收到 401 请求。是否也可以定义哪些 401 需要被拦截,哪些被忽略
(function () {
'use strict';
angular
.module('app', ['ngRoute','ngCookies','ngMessages'])
.config(routeConfig);
routeConfig.$inject = ['$routeProvider','$httpProvider'];
function routeConfig($routeProvider,$httpProvider) {
$routeProvider
.when('/', {
templateUrl: 'login.html',
controller : 'LoginController'
})
.when('/register', {
templateUrl: 'register.html',
controller : 'RegisterController'
})
.when('/main', {
//This gives an 401 status when the user has not been logged in
templateUrl: 'home.html',
controller : 'HomeController'
})
.otherwise('/');
// We need to add this for csrf protection
$httpProvider.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
//this gives an Circular dependency error
$httpProvider.interceptors.push('HttpResponseInterceptor');
}
})();
这是我的服务:
(function () {
'use strict';
angular
.module('app')
.factory('HttpResponseInterceptor', HttpResponseInterceptor);
HttpResponseInterceptor.$inject = ['$rootScope','$http','$q','$location'];
function HttpResponseInterceptor($rootScope,$http,$q,$location) {
return {
response: function(response){
if (response.status === 401) {
}
return response || $q.when(response);
},
responseError: function(rejection) {
if (rejection.status === 401) {
$location.path('/login');
}
return $q.reject(rejection);
}
};
}
})();
更新2
正如评论中提到的,我注入了很多东西。所以这是一个已解决的问题,但是现在当我进入登录页面时,它会在加载页面时发出请求(localhost:8080/user),这会导致重定向到登录页面的无限循环,并导致浏览器崩溃.
那么有没有一种方法可以告诉拦截器哪些 url 需要重定向,哪些不需要