创建模块的最佳做法是什么?

时间:2015-11-10 17:34:48

标签: javascript angularjs

我已经通过两种方式看到了这一点:

  1. module分配了一个全局变量,然后将其附加到指令,控制器和服务:

    var app = angular.module('myApp', [ ]);
    
    app.directive('myDirective' function() {
       // directive stuff here
    });
    
  2. 或者模块按原样使用:

    angular.module('myApp', [ ])
    
    .directive('myDirective' function() {
       // directive stuff here
    });
    
  3. 那你为什么要这样做呢?

0 个答案:

没有答案