搜尋

首頁  >  問答  >  主體

angular.js - Angularjs 如何外部呼叫service

我寫了一段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標籤裡面呢?要怎麼寫呢?

PHPzPHPz2744 天前466

全部回覆(1)我來回復

  • 黄舟

    黄舟2017-05-15 17:08:28

    在單獨的js檔案這樣寫: angular.module('myApp').factory('Service', function() {//...})

    回覆
    0
  • 取消回覆