在我的angularJS应用程序中,我有两个模块:模块A和模块B.
angular.module('A').controller('ACtrl',function($scope){
$scope.alertA = function(){alert('a');}
//...
});
angular.module('B').controller('BCtrl',function($scope){
//...
});
如何调用模块B中的函数alertA
?
答案 0 :(得分:7)
您需要在模块A :
中定义工厂var moduleA= angular.module('A',[]);
moduleA.factory('factoryA', function() {
return {
alertA: function() {
alert('a');
}
};
});
然后使用模块B 中的alertA
工厂:
angular.module('B',['A']).controller('BCtrl',function($scope,'factoryA'){
factoryA.alertA();
});
答案 1 :(得分:1)
按照以下步骤重构您的代码:
以下是一个例子:
angular.module('A').service('API', function ($http) {
this.getData = function () { return $http.get('/data'); };
});
angular.module('B', ['A']).controller('dashboardCtrl', function ($scope, API) {
API.getData().then(function (data) { $scope.data = data; });
});