我寫了一段angularjs程式碼,在controller裡面注入service,大致類似這個樣子:
window.app = angular.module('myApp', []);
app.controller('Ctrl',function($scope, Service){
$scope.test = Service.test();
});
app.factory('Service',function(){
var test= 1;
var service={};
service.testing= function(){
return test;
}
});
這段程式碼被放到一個html的body裡面的一個標籤下,測試可以實現。但是如果我把
app.factory('Service',function(){
var test= 1;
var service={};
service.testing= function(){
return test;
}
});
提出來,單獨放到一個a.js檔裡面就沒辦法實現了。我試著放到header裡面;放到body裡面放有controller的script標籤上面或下面都不行。是不是要把這個檔案引用到script標籤裡面呢?要怎麼寫呢?