4

我对 angularjs 应用程序的工作方式有点困惑。

首先我应该说我是一个新手 angularjs用户,但我熟悉其他语言的其他 DI 框架(如 PHP 中的 symfony,Java 中的 spring,有点 Unity)。

这些 DI 实现中的每一个都需要类定义和DI 配置

配置通常包括:

  • 应该如何注入类(自动按名称或类型,或手动)
  • 如果容器应该返回一个单例实例
  • 应该使用什么工厂类来创建对象
  • serviceIds - 可以通过 serviceId 检索每个服务。这个 serviceId 表示创建实例的配置(应该注入哪些服务以及应该使用哪些参数)。
  • 等等

我在 angularjs 中缺少这个配置。

有一个愚蠢的 例子,我希望这样的配置应该如何工作。我有两个服务,每个都做类似的事情,但实现不同

angular.module('notify', [], function($provide) {
    $provide.factory('LogNotifier', function($window) {
        return {
            messageMe: function(message) {
                $window.console.log(message);
            }
        }

    });
    $provide.factory('AlertNotifier', function($window) {
        return {
            messageMe: function(message) {
                $window.alert(message);
            }
        }
    });
});



angular.module('myModule', ['notify'], function($provide) {
  // as notifier dependency I must specify its type.
  // is there any way how I would configure after its definition
  // which notifier implementation should be used?
  $provide.factory('DataLoader', function(AlertNotifier) {
      var loader = {
          loadAllItems: function() {
              AlertNotifier.messageMe('Loading items');
              // let's asume there is ajax call and promise object return
              return [ 
                    {name: 'Item1'},
                    {name: 'Item2'}
                ];
          }
      }
      return loader;
  });
});

http://jsfiddle.net/5ZDe6/1/

我想在不更改DataLoader 服务的源代码的情况下在 LogNotifier 和 AlertNotifier 之间切换。那可能吗?

谢谢

4

1 回答 1

5

在摆弄 angularjs 一周后,我意识到一件非常重要的事情。所有 angularjs 示例实际上都包含我寻找的 DI 配置。配置实际上是一个模块定义本身

我所要做的就是将模块定义与类定义分开。这里解决了我的问题 - http://jsfiddle.net/5ZDe6/7/

/**
* app module configuration
*/
angular.module('app', ['debug'], function($provide) {
    var dataLoaderFactory = function(Notifier) {
        return new my.model.DataLoader(Notifier);
    }
    // if you want to change notifier just change this injection to AlertNotifier
    dataLoaderFactory.$inject = ['LogNotifier'];  
    // Specify factory with service ID DataLoader for class my.model.DataLoader
    $provide.factory('DataLoader', dataLoaderFactory);    
})
.controller('AppCtrl', my.controller.ItemCtrl); // you can even specify AppCtrl implementation (e.g. CachedCtrl)
my.controller.ItemCtrl.$inject = ['$scope','DataLoader']
my.controller.CachedCtrl.$inject = ['$scope']

/**
* debug module configuration
*/
angular.module('debug', [], function($provide) {
    $provide.factory('LogNotifier', function($window) {
       return new my.debug.LogNotifier($window);
    });
    $provide.factory('AlertNotifier', function($window) {
       return new my.debug.AlertNotifier($window); 
    });
});

并且有与 DI 配置分开的类定义。

/**
* Controller class definition
*/
my = window.my || {};
my.controller = my.controller || {};
my.controller.ItemCtrl = function($scope, loader) {
    $scope.items = loader.loadAllItems();
};

my.controller.CachedCtrl = function($scope) {
    $scope.items = [
        { name: 'Cached ctrl value 1'},
        { name: 'Cached ctrl value 2'}
    ]
}

/**
* Model class definition
*/
my.model = my.model || {};
my.model.DataLoader = function(notifier) {
    this.notifier = notifier;
    this.loadAllItems = function() {
        this.notifier.messageMe('Loading items');
        // let's asume there is ajax call and promise object return
        return [ 
            {name: 'Item1'},
            {name: 'Item2'}
        ];
    };
};

/**
* Some debug classes definition
*/
my.debug = my.debug || {}
my.debug.LogNotifier = function($window) {
    this.$window = $window;
    this.messageMe = function(message) {
        this.$window.console.log(message);
    }
};
my.debug.AlertNotifier = function($window) {
    this.$window = $window;
    this.messageMe = function(message) {
        this.$window.alert(message);
    }
}

我想这是实现我的要求的最干净的方法。不幸的是,如果您真的想这样做,您必须编写更多代码

坦率

于 2013-06-01T10:09:08.157 回答