5

问题:

如何$mdToast在不触发错误的情况下在拦截器中使用?

设置:

拦截器定义:

(function () {
  'use strict';

  angular
    .module('app.components.http-errors-interceptors')
    .factory('HttpError500Interceptor', HttpError500Interceptor);

  /* @ngInject */
  function HttpError500Interceptor($q,
                                   $mdToast,
                                   $filter) {

    var interceptor           = {};
    interceptor.responseError = responseError;

    function responseError(responseError) {
      if (responseError.status === 500) {
        $mdToast.show($mdToast.simple()
                              .content($filter('translate')('APP.COMPONENTS.HTTP_ERRORS_INTERCEPTORS.500'))
                              .position('bottom right')
                              .hideDelay(5000));
      }
      return $q.reject(responseError);
    }

    return interceptor;
  }
})();

拦截器配置:

(function () {
  'use strict';

  angular
    .module('app.components.http-errors-interceptors')
    .config(moduleConfig);

  /* @ngInject */
  function moduleConfig($httpProvider) {
    $httpProvider.interceptors.push('HttpError500Interceptor');
  }
})();

问题:

当我加载应用程序时,它会触发以下错误:

未捕获的错误:[$injector:cdep] 找到循环依赖项:$http <- $templateRequest <- $$animateQueue <- $animate <- $$interimElement <- $mdToast <- HttpError500Interceptor <- $http <- $templateFactory <- $view <- $状态

4

3 回答 3

5

过去对我有帮助的一种解决方法是$injector在运行时而不是在配置时获取依赖项。所以,像:

  /* @ngInject */
  function HttpError500Interceptor($q,
                                   $injector,
                                   $filter) {
    function responseError(responseError) {
      var $mdToast = $injector.get('$mdToast');

当您的循环依赖不会导致问题时(在这种情况下可能不会),这将起到作用。

于 2016-01-31T20:56:31.290 回答
4

提供的解决方案都不适合我,所以我在这里发布我所做的,以便任何有相同问题的人都可以使用一系列解决方法。

我真正想要的是有一个通用组件来处理命名的 HTTP 拦截器并直接显示来自模块的消息,而且很高兴,由于最终的解决方案更优雅,它在注入服务interceptors时触发了这个错误。$mdToast

我后来提出的解决方案(我已经说过)比我对这个问题的第一个解决方案更优雅:

  • 有一个通用组件来处理名为的 HTTP 拦截器interceptors
  • 有一个通用组件来处理名为notifications-hub.

然后,在interceptors模块中,我触发了一个全局事件:

$rootScope.$broadcast('notifications:httpError', responseError);

然后,在notifications-hub模块中,我注册了事件并使用了$mdToast,它在通知服务中注入没有错误:

$rootScope.$on('notifications:httpError', function (event, responseError) { NotificationsHubService.processErrorsAndShowToast(responseError); });

NotificationsHubService是服务注入$mdToast

结论:

我使用全局事件作为低级拦截器和通知子系统之间的粘合剂来克服这个问题。

希望它对其他人有用。

于 2016-09-20T13:39:16.013 回答
0

您应该做的是创建一个在运行时为您带来烤面包机的函数

  var getToaster = ()=>{

    var toaster = $injector.get('$mdToaster');
    return toaster;
}

现在只在需要时调用它——这将提供一个解决依赖循环的方法

于 2016-03-03T09:03:37.140 回答