web-dev-qa-db-ja.com

AngularJs / .provider / rootScopeを取得してブロードキャストを行う方法は?

今の私の仕事は、$ exceptionHandlerプロバイダーを書き直して、メッセージ付きのモーダルダイアログを出力し、デフォルトのイベントを停止することです。

私がやること:

プロジェクトの初期化では、メソッド.providerを使用します。

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

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

})

標準注入方法は機能しません。

[〜#〜] upd [〜#〜]:サンドボックス http://jsfiddle.net/STEVER/PYpdM/ =

18
Stepan Suvorov

インジェクターを注入して、$ rootScopeを検索できます。

デモプランカー: 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);  
    }
  };
});
31
checketts

これを行う私の方法-デコレータを使用し、不明なエラーで前の例外ハンドラに戻す:

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);
    };
  });
});
1
Amit Portnoy