2017-02-15 45 views
0

的HTML頁面如何認識它的模塊名稱是從一個在NG-應用在HTML頁面中不同AngularJS自定義組件?AngularJS自定義組件?

非常感謝提前。

P.S.我發現我在下面的鏈接答案: How to register two modules to ng-app?

+0

的指令? – Zze

+0

的可能的複製[如何註冊兩個模塊到NG-應用程序嗎?(http://stackoverflow.com/questions/16228508/how-to-register-two-modules-to-ng-app) –

+0

是的,你是對。這是如何向ng-app註冊兩個模塊的副本。 – henhao

回答

0

通過我假設你指的是角指令自定義組件。 ,如果您有包含注入到你的主模塊的指令模塊依賴。

let module1 = angular.module('module1',[]).directive(/*directive code here*/); 
let module2 = angular.module('module2', ['one']); 

在上述情況下,module2知道它們的聲明數組中定義在`.module`在module1

+0

'one',你的意思是'module1'? – henhao