如何使用AngularJS在控制器中调用服务功能?

时间:2016-03-09 01:39:38

标签: angularjs

我正在尝试从控制器中的服务调用一个函数,但是我得到一个错误,说我正在调用的东西不是函数。我是AngularJS的新手,所以我不确定我做错了什么。那么,在控制器中调用服务功能的正确方法是什么?

我正在尝试拨打getCurrentUserInfo

中的ProfileCtrl
.service('AuthService', function($http, Backand){    
    function getCurrentUserInfo() {
        return $http({
            method: 'GET',
            url: baseUrl + "users",
            params: {
                filter: JSON.stringify([{
                    fieldName: "email",
                    operator: "contains",
                    value: self.currentUser.name
                }])
            }
        }).then(function (response) {
            if (response.data && response.data.data && response.data.data.length == 1)
                return response.data.data[0];
        });
    }
})

.controller('ProfileCtrl', ['$scope', '$ionicSideMenuDelegate', 'AuthService', function($scope, $ionicSideMenuDelegate, AuthService) {

  AuthService.getCurrentUserInfo().then(function(response){
   $scope.user = response.data.data;
});

//  function getCurrentUserInfo() {
//    AuthService.getCurrentUserInfo()
//    .then(function (result) {
//      $scope.user = result.data;
//    });
//  }

}])

1 个答案:

答案 0 :(得分:6)

您需要将其设为this的属性。

   .service('AuthService', function($http, Backand){    
        this.getCurrentUserInfo = function() {
            return $http({
                method: 'GET',
                url: baseUrl + "users",
                params: {
                    filter: JSON.stringify([{
                        fieldName: "email",
                        operator: "contains",
                        value: self.currentUser.name
                    }])
                }
            }).then(function (response) {
                if (response.data && response.data.data && response.data.data.length == 1)
                    return response.data.data[0];
            });
        }
    })

然后在您的控制器中

AuthService.getCurrentUserInfo(whatEverYourParamsAre)

编辑:其实,让我提供一些上下文。 Angular将new函数应用于控制器中包含的每个.service(....)。我们知道,在构造函数中调用this.aFunction会导致javascript中的new运算符将aFunction函数视为构造函数返回的对象的属性。