有时,即使出现错误,我使用的API也会返回200.响应
JSON对象将如下所示:
{ error: true }
我已经构建了一个$http响应拦截器,它只是检查这个错误并拒绝它.我想要它然后跳转到我的responseError函数:
$httpProvider.interceptors.push(function($q) { return { response: function (response) { if (response.data.error) { // There has been an error,reject this response return $q.reject(response); } return response; },responseError: function(rejection) { // Display an error message to the user ... return $q.reject(rejection); } } });
问题是,即使在拒绝响应之后,我的responseError函数也没有被调用.它被称为500错误等,所以我知道它的工作.我希望拒绝做同样的事情.
从docs:
responseError: interceptor gets called when a prevIoUs interceptor threw an error or resolved with a rejection.
关于什么缺失的任何想法?
看起来这是不可能做的.要减少重复的代码,只需单独声明错误处理函数,并在响应和responseError函数中重用它.
原文链接:https://www.f2er.com/angularjs/142555.html$httpProvider.interceptors.push(function($q) { var handleError = function (rejection) { ... } return { response: function (response) { if (response.data.error) { return handleError(response); } return response; },responseError: handleError } });