将数据从服务传递到angularjs中的控制器

时间:2014-06-02 09:47:00

标签: javascript angularjs angularjs-service

以下是我的服务代码 -

myApp.service('loginServiceChk', function(){
    this.getInfo = {};
    this.chkLogin = function($http,$location,$window){
        $http.get('/users/chklogin')
            .success(function (data, status, headers, config) {             
                if (data.code!="200"){
                    this.getInfo = {};
                    $window.location.href='/#/users/login';
                }else{
                    this.getInfo = data.usersession;    
                }
            }); 
    };
});

我的控制器代码 -

myApp.controller('userDash',function($scope,$http,$location,loginServiceChk,$window){
    loginServiceChk.chkLogin($http,$location,$window);
    console.log(loginService.getInfo);
    $scope.userLogout = function() {        
        $http.get('/users/logout').success(function (data, status, headers, config) {
            if (data.logout=="200"){
                merInfo = {} ;
                $window.location.href='/#/userss/login';
            }   
        })
    };
});

但是我总是在控制台中获取一个空对象(console.log(loginService.getInfo);)。让我知道我在这里做错了什么。

我期待this.getInfo中的会话数据。

修改

如果我使用的是.then,那么它就会出现在if,即if (data.code!="200"){

1 个答案:

答案 0 :(得分:1)

你必须等待承诺。

在你的控制器中使用它:

loginServiceChk.chkLogin($http,$location,$window).then(function() {
    console.log(loginService.getInfo);
});

并将return添加到您的服务中:

this.chkLogin = function($http,$location,$window){
    return $http.get('/users/chklogin')
        .then(function (data, status, headers, config) {             
            if (data.code!="200"){
                this.getInfo = {};
                $window.location.href='/#/users/login';
            }else{
                this.getInfo = data.usersession;    
            }
        }); 
};