我已经通过两种方式看到了这一点:
为module
分配了一个全局变量,然后将其附加到指令,控制器和服务:
var app = angular.module('myApp', [ ]);
app.directive('myDirective' function() {
// directive stuff here
});
或者模块按原样使用:
angular.module('myApp', [ ])
.directive('myDirective' function() {
// directive stuff here
});
那你为什么要这样做呢?