私は混乱しています。ページごとに1回しか使用できない場合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(){ ... })
では、mainModule.jsから参照せずに、ページ上のsecondModuleをポイントするにはどうすればよいですか。