我的想法是创建一个名为“remote_log”的服务,并将所有需要发送错误的代码放在服务器中。那个服务当然会使用$ http服务,并在它的依赖列表中。
然后将拦截器的依赖项添加到“remote_log”服务中,并在需要向服务器发送错误时使用拦截器内的“remote_log”。问题是:
当$ http服务仍未实例化/可访问时,拦截器必须使用$ httpProvider进行定义,因此,拦截器代码内不能依赖于$ http服务,因为“循环依赖”错误发生。
我认为我唯一的选择是在我的’remote_log’内创建一个单独的$ http服务实例,这个实例不会在创建拦截器时使用我设置的$ httpProvider配置。我的问题是:我该怎么做?任何其他想法?
> $ http服务被请求。
> $ httpProvider被要求构造它。
>在建设过程中你注册了拦截器,它要求$ http服务尚未存在。
>你得到“循环依赖”错误。
第一个解决方案
使用angular.injector()创建您的依赖关系。请注意,您将创建另一个$ http服务,独立于您的应用程序。
$httpProvider.interceptors.push(function($q) { $injector = angular.injector(); return { response: function(response) { $injector.invoke(function($http) { // This is the exterior $http service! // This interceptor will not affect it. }); } }; });
第二个解决方案(更好)。
在您的拦截器中注入$注射器,并使用它在$ http初始化之后检索依赖关系,就在您需要的时候。这些依赖关系是您的应用程序的注册服务,不会重新创建!
$httpProvider.interceptors.push(function($q,$injector) { return { response: function(response) { $injector.invoke(function($http,someService) { // $http is already constructed at the time and you may // use it,just as any other service registered in your // app module and modules on which app depends on. }); } }; });
2.拦截预防问题。
如果您使用第二个解决方案,实际上有两个问题:
>如果你使用$ http服务
拦截器,你可能会遇到无限的拦截:你发送
请求拦截器捕获它,发送另一个,捕获另一个,
再发送,等等。
>有时您只希望阻止请求被拦截。
$ http服务的’config’参数只是一个对象。您可以创建一个约定,提供自定义参数并在拦截器中识别它们。
例如,我们添加“nointercept”属性到配置,并尝试重复每个用户请求。这是一个愚蠢的应用程序,但有用的例子来了解行为:
$httpProvider.interceptors.push(function($q,$injector) { return { response: function(response) { if (response.config.nointercept) { return $q.when(response); // let it pass } else { var defer = $q.defer(); $injector.invoke(function($http) { // This modification prevents interception: response.config.nointercept = true; // Reuse modified config and send the same request again: $http(response.config) .then(function(resp) { defer.resolve(resp); },function(resp) { defer.reject(resp); }); }); return defer.promise; } } }; });
在拦截器中进行属性测试时,可能会阻止在控制器和服务中的拦截:
app.controller('myController',function($http) { // The second parameter is actually 'config',see API docs. // This query will not be duplicated by the interceptor. $http.get('/foo/bar',{nointercept: true}) .success(function(data) { // ... }); });