我有外部js文件,它有更多的功能。在Angular js控制器中調用外部js文件功能
我需要從角度控制器調用這些功能。
例如:external.js
...
...
function fun() {
...
...
}
...
...
控制器:acccountController.js
myApp.controller('AddAccountController',function ($scope,AddAccountLoginServices,$location,localStorageService,$compile,toaster){
....
....
$scope.getLoginForm = function(siteId,name) {
...
...
fun(); // This function from external.js file
});
...
...
});
的acccountController.js之前,我已導入external.js。但它並沒有調用這個函數。而且我還沒有得到任何控制檯錯誤。
如何實現這一點...在此先感謝。
你是如何在角度模塊中導入外部js的? – Shikhar