我很困惑。如果我ng-app
每页只能使用一次,我如何使用位于不同模块、不同 .js 文件中的指令。看:
<script src='mainModule.js'/>
<script src='secondModule.js'/>
<body ng-app='mainModule'>
<my-thingy/>
<div>
<other-thingy/>
</div>
</body>
mainModule.js:
angular.module("mainModule",[]).directive("myThingy",function(){ ... })
secondModule.js:
angular.module("secondModule",[]).directive("otherThingy",function(){ ... })
那么,我现在如何指向页面上的 secondModule,而不是从 mainModule.js 引用它