我正在开发angularjs项目。
在 app.js 中,我使用 addResponseInterceptor 来拦截对服务器的每个请求。如果没有错误(response.status == 200 OK)作为回应,那么它的工作完美。但是我想在(response.status == 401)时拦截。在这种情况下,我想将用户重定向到登录页面。但它不起作用。
以下是我的 app.js addResponseInterceptor的代码:
RestangularProvider.addResponseInterceptor(function(data, operation, what, url, response, deferred) {
if (response.status === 401)
{
window.location = 'To the login page';
} else
{
var extractedData;
extractedData = data;
return extractedData;
}
});
请求拒绝获取数据时出现这些错误
我尝试通过" console.log(响应)"来调试响应。但它没有显示任何东西。似乎如果响应中存在错误,那么它就不会进入thr拦截器块。
答案 0 :(得分:4)
你需要的是error-intecetpr。以下示例
Restangular.setErrorInterceptor(function(response, deferred, responseHandler) {
if(response.status === 403) {
refreshAccesstoken().then(function() {
// Repeat the request and then call the handlers the usual way.
$http(response.config).then(responseHandler, deferred.reject);
// Be aware that no request interceptors are called this way.
});
return false; // error handled
}
return true; // error not handled
});