我有一个名为 authService 的服务。我从 Logincontroller 调用它如下:
angular.module('myApp').controller('LoginController',function($q, $scope, $location,$routeParams, $window, authService) {//some code here});
这很好用。
现在我有另一个名为 regService 的服务,就像:
angular.module('myApp').factory('regService ', function ($window, $q, $rootScope) {//some code here});
现在在 LoginController 我如何从 regService 调用函数?