我有角js 1.3.3應用程序。引導後加載依賴於angularjs應用程序
我加載一個模塊從其他的網站:
RequireJS
我想我的引導應用程序,然後緊接着加載外部模塊。
我的代碼:
var app = angular.module("myApp");
app.run(function(){
// Load external module
require("some js url", function(){
app.requires.push("externalApp");
});
});
angular.bootstrap($("html"), "myApp");
這個代碼不工作(在「對myApp」有沒有從「externalApp」訪問服務),有什麼不對?
謝謝幫助,非常感謝
Refa。
您正在創建或僅引用您的模塊「myApp」嗎? – tiagodws
只引用在@tiagodws – user2740785