您可以通过传入控制器的范围来使用服务:
原文链接:https://www.f2er.com/angularjs/141898.htmlangular.module('app').service("CommonFunctions",['SomeService',function(SomeService) { var commonFunctions = {}; commonFunctions.init = function(scope){ scope.$watch(function(){},function(){}) }; return commonFunctions; }]); angular.module('app').controller('Ctrl1',['$scope','CommonFunctions',function($scope,CommonFunctions) { CommonFunctions.init($scope); }]); angular.module('app').controller('Ctrl2',CommonFunctions) { CommonFunctions.init($scope); }]);
这样您就可以使用单个控制器的作用域,但在服务中使用通用方法.如果您希望实际添加到控制器范围的服务的常用功能,您还可以在控制器中使用angular.extend($scope,AService).
这是一个有效的小提琴:http://jsfiddle.net/rhcjdb7L/
当然这很酷,但是你确定你不想使用$rootscope.$broadcast()?写得很好:http://toddmotto.com/all-about-angulars-emit-broadcast-on-publish-subscribing/