加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

angularjs – 循环依赖关系找到:$http < - $templateFactory

发布时间:2020-12-17 08:31:15 所属栏目:安全 来源:网络整理
导读:我有一个当前401检查,我运行与$位置工作正常。但是我想把它交换到$ state并使用ui-router代替。当我这样做,我得到一个错误代码: Circular dependency found: $http - $templateFactory - $view - $state - authHttpResponseInterceptor - $http - $compil
我有一个当前401检查,我运行与$位置工作正常。但是我想把它交换到$ state并使用ui-router代替。当我这样做,我得到一个错误代码:
Circular dependency found: $http <- $templateFactory <- $view <- $state <- authHttpResponseInterceptor <- $http <- $compile

我当前的代码看起来很好,因为我检查某些路径,并允许没有登录的用户查看它们:

/* Look for 401 auth errors and then redirect */
  .factory('authHttpResponseInterceptor',['$q','$location',function($q,$location) {

      return {
          response: function(response){
              if (response.status === 401) {
              }

              return response || $q.when(response);
          },responseError: function(rejection) {
              var reservedPaths = ['/','/login','/connect','/event'];
              if (rejection.status === 401 && _.contains(reservedPaths,$location.path().trim())) {
                  $location.path('/welcome');

              }
              return $q.reject(rejection);
          }
      };
  }])
  .config(['$httpProvider',function($httpProvider) {
      //Http Intercpetor to check auth failures for xhr requests
      $httpProvider.interceptors.push('authHttpResponseInterceptor');
  }]);

我添加的代码如下:

/* Look for 401 auth errors and then redirect */
  .factory('authHttpResponseInterceptor',**'$state',** function($q,$location,**$state**) {

      return {
          response: function(response){
              if (response.status === 401) {
              }

              return response || $q.when(response);
          },'/mycube',$location.path().trim())) {
                  **$state.go('home');**

              }
              return $q.reject(rejection);
          }
      };
  }])
  .config(['$httpProvider',function($httpProvider) {
      //Http Intercpetor to check auth failures for xhr requests
      $httpProvider.interceptors.push('authHttpResponseInterceptor');
  }]);

为什么添加状态导致此问题,当它与位置正常工作?

看来$ state服务导致与$ http服务的循环依赖。这可能是由于templateFactory(参见 https://github.com/angular-ui/ui-router/blob/master/src/templateFactory.js)被注入$ http服务以及拦截器本身由$ http服务组成的事实造成的。

为了解决这个循环依赖问题,你可以使用$ injector服务将$ state服务连接到你的拦截器。见修改后的代码:

/* Look for 401 auth errors and then redirect */
module.factory('authHttpResponseInterceptor','$injector',$injector) {
    return {
        response: function(response){
            if (response.status === 401) {
            }

            return response || $q.when(response);
        },responseError: function(rejection) {
            var reservedPaths = ['/','/event'];
            if (rejection.status === 401 && _.contains(reservedPaths,$location.path().trim())) {
                var stateService = $injector.get('$state');
                stateService.go('home');
            }
            return $q.reject(rejection);
        }
    };
}]);

您可以在这里了解更多关于$ injector服务的信息:https://docs.angularjs.org/api/auto/service/ $ injector

重要

我建议使用状态更改事件(参见https://github.com/angular-ui/ui-router/wiki#state-change-events)使用$ stateChangeError监视错误,并检查从401返回的错误。

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读