0

如何让 $http 拦截器只对给定的模式做出反应?

例如,我希望拦截器处理每个“/api/*”请求,而不要理会其他请求。

4

1 回答 1

1

您可以在请求或响应中过滤成功或拒绝功能中的 url。

假设您需要处理以“math/”开头的 url 的请求和响应的错误。

这是你的拦截器。

$httpProvider.interceptors.push(function($q, mathError) {
                        return {

                            requestError: function(rejection){                            
                                mathError.anyError(rejection);    
                                return $q.reject(rejection);
                            },

                            responseError: function(rejection){                            
                                mathError.anyError(rejection);
                                return $q.reject(rejection);
                            }
                        };
    });

这是您处理它的工厂

myApp.factory('mathError', function(){
    return {
                anyError: function(rejection){ 

                     if (rejection.config.url.substr(0, 5) === "math/") {

                         console.log("Only Math errors are handled here"); 

                         //Do whatever you need here
                     }
                }            

});
于 2015-10-13T18:16:47.720 回答