18

现在我的任务是重写 $exceptionHandler 提供程序,以便它输出带有消息的模式对话框并停止默认事件。

我做什么:

在项目初始化中,我使用方法 .provider:

.provider('$exceptionHandler', function(){

//and here I would like to have rootScope to make event broadcast

})

标准注入方法不起作用。

UPD:沙箱 - http://jsfiddle.net/STEVER/PYpdM/

4

3 回答 3

31

您可以注入注入器并查找 $rootScope。

演示 plunkr:http ://plnkr.co/edit/0hpTkXx5WkvKN3Wn5EmY?p=preview

myApp.factory('$exceptionHandler',function($injector){
    return function(exception, cause){
        var rScope = $injector.get('$rootScope');
        if(rScope){
            rScope.$broadcast('exception',exception, cause);
        }
    };
})

更新:也添加 .provider 技术:

app.provider('$exceptionHandler', function() {
  // In the provider function, you cannot inject any
  // service or factory. This can only be done at the
  // "$get" method.

  this.$get = function($injector) {
    return function(exception,cause){
      var rScope = $injector.get('$rootScope');
      rScope.$broadcast('exception',exception, cause);  
    }
  };
});
于 2013-02-19T16:19:23.030 回答
1

我这样做的方式 - 使用装饰器并在未知错误时恢复到先前的异常处理程序:

app.config(function ($provide) {
  $provide.decorator('$exceptionHandler', function($delegate, $injector) {
    return function (exception, cause) {
      if (ICanHandleThisError) {
        var rootScope= $injector.get('$rootScope');
        // do something (can use rootScope)
      } else
       $delegate(exception, cause);
    };
  });
});
于 2013-11-02T12:33:15.040 回答
-2

您需要注入 $rootScope:

.provider('$exceptionHandler', '$rootScope', function(){

//and here I would like to have rootScope to make event broadcast

})

这是你试过的吗?如果是这样,您是否有错误消息或 jsfillde/plnkr 来查看它失败的原因?

于 2013-02-19T10:08:34.497 回答