搜尋

首頁  >  問答  >  主體

angular.js - Angular如何建立類似$http的全域service?

(function(angular){
    "use strict";
    angular.module('testModule',function(){
        return {
            test : function(){
                console.info('testModule is ready!');
            }
        }
    });
})(window.angular);
var mainApp = angular.module('mainApp',[]);
mainApp.controller('homeController',['testModule',function(testModule){
  testModule.test();
}]);
"Error: [$injector:unpr] Unknown provider: testModuleProvider
某草草某草草2752 天前608

全部回覆(2)我來回復

  • 迷茫

    迷茫2017-05-15 17:15:05

    謝邀,你寫的只對了30%。這裡涉及兩個話題:

    1、不同module

    angular.module('testModule')angular.module('mainApp',[]) 是两个不同的module,你想要在 mainApp 中使用 testModule,那么你需要在 angular.module('mainApp', [ 'testModule' ]) 導入這種相依性。

    2、全域工具類別的寫法不正確

    上面有人回答了:

    (function(angular){
        "use strict";
        angular.module('testModule', []).factory('alertService', function() {
            return {
                test : function(){
                    console.info('testModule is ready!');
                }
            }
        });
    })(window.angular);

    在使用時,可以:

    var mainApp = angular.module('mainApp',[ 'testModule' ]);
    mainApp.controller('homeController',['alertService',function(alertService){
      alertService.test();
    }]);

    以上程式碼未經驗證,結構上應該沒有什麼問題,請自行除錯解決。

    回覆
    0
  • phpcn_u1582

    phpcn_u15822017-05-15 17:15:05

    把你的service定義成一個module就可以了,例如:

      var appServices = angular.module('myApp.services', []);
        appServices.factory('alertService', function($rootScope) {
            var alertService = {};
            return alertService;
        });

    回覆
    0
  • 取消回覆