作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在从事 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(response)”调试响应,但它没有显示任何内容。看起来如果响应中有错误,那么它不会进入拦截器 block 。
最佳答案
你需要的是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
});
关于angularjs - 矩形 : addResponseInterceptor not working,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29667322/
我正在从事 angularjs 项目。 在app.js中,我使用addResponseInterceptor来拦截对服务器的每个请求。如果响应中没有错误(response.status == 200
我正在从事 angularjs 项目。 在app.js中,我使用addResponseInterceptor来拦截对服务器的每个请求。如果响应中没有错误(response.status == 200
我是一名优秀的程序员,十分优秀!