我正在使用$ rootScope在我的app运行函数中初始化一个函数 -
angular.module('student').run(function($sce,$rootScope, $location,mvNotifier,$http) {
$rootScope.getUser = function(){
var url = '/getUser';
$http({method:'POST',url:url}).success(function(data,status,headers,config){
if(status==200){
$rootScope.user = data;
var date = new Date(data.date);
$rootScope.user.joinMonth=date.toUTCString().split(' ')[2];
$rootScope.user.joinYear=date.getYear();
}
else
mvNotifier.error(data.reason);
});
};
});
现在,当我在控制器中尝试这个时 -
angular.module('student').controller('ProfileController', function($scope,$http,$location,mvNotifier,$rootScope) {
if(!$rootScope.user){
$rootScope.getUser();
}
$scope.firstName = $rootScope.user.firstName;
});
如果已经设置了$ rootScope.user,它可以正常工作。但如果在这种情况下必须调用$ rootScope.getUser(),则会出错 -
TypeError: Cannot read property 'firstName' of undefined
所以,我想知道可能是因为getUser是一个异步调用,如果它是我如何解决这个问题,如果它不是我在哪里出错,请建议
答案 0 :(得分:2)
你可以试试这样的事情
$rootScope.getUser = function () {
var url = '/getUser';
return $http({
method: 'POST',
url: url,
cache: true /* cache true so we don't have to get from server each time*/
}).then(function (resp) {
var data = resp.data;
$rootScope.user = data;
var date = new Date(data.date);
$rootScope.user.joinMonth = date.toUTCString().split(' ')[2];
$rootScope.user.joinYear = date.getYear();
return $rootScope.user;
}, function(err){
alert('OOps server errror')
});
};
在控制器中:
$rootScope.getUser().then(function(user){
$scope.firstName = user.firstName;
});