我想做的是:
如果我得到401响应我想拦截并发送另一个帖子请求从我的服务器获取新令牌。但我不能在角度拦截器中做到这一点。我收到这个错误:
找到循环依赖项:authService< - authIn< - $ http< - $ translateStaticFilesLoader
问题是什么,我怎么能做我想做的事?
return {
'responseError': function(rejection) {
if (rejection.status === 401) {
authService.getNewToken();
return $q.reject(rejection);
}
return $q.reject(rejection);
}
};
}
答案 0 :(得分:1)
您可以尝试使用$injector
并制作如下内容:
$provide.factory('MyHttpInterceptor', ['$q', '$injector', function ($q, $injector) {
return {
responseError: function (rejection) {
console.log("MyHttpInterceptor rejection ", rejection); // Contains the data from the first response.
var $http = $injector.get('$http');
// Return another $http call.
return $http.get('http://ip.jsontest.com/');
}
};
}]);
这种解决方案的不好的一面是你可以进入无限循环的$ http调用。如果您的第二个$ http请求一次又一次失败,您将始终触发Interceptor。您至少应该添加状态代码检查,就像您已将其设为rejection.status === 401
。
使用超级简单示例工作Plunker。