所以我有一个服务,它包含通过AngularJS中的$ http服务进行一些REST方法调用的函数。然后在Controller中访问和调用这些方法。
当通过控制器调用该方法时,打印到服务中控制台的数据就是我所期望的JSON对象。但是一旦该函数将其数据返回给控制器,它就会变得不确定。
我不太清楚这是什么原因,并且希望了解为什么会发生这种情况,是否与范围界定或垃圾收集有关?
谢谢!
所以这里是服务中心'
this.getAllHubs = function() {
$http({
method: 'GET',
url: 'https://****.com',
}).then(function successCallback(response) {
console.log('In hub.js ' + JSON.stringify(response.data));
this.hubs = response.data;
return response.data;
}, function errorCallback(response) {
// Error response right here
});
};
正如预期的那样,第一个控制台输出正确打印对象
这是控制器代码
app.controller('HubCtrl', HubCtrl);
HubCtrl.$inject = ['$scope','hub'];
function HubCtrl($scope,hub) {
$scope.hubs = hub.getAllHubs();
console.log('In ctrl ' + $scope.hubs);
$scope.addHub = function(_hub) {
console.log('In Ctrl ' + _hub);
hub.addHub(_hub);
};
}
答案 0 :(得分:2)
您没有从函数 this.getAllHubs = function() {
return $http({ // Put a return here
method: 'GET',
url: 'https://****.com',
}).then(function successCallback(response) {
console.log('In hub.js ' + JSON.stringify(response.data));
this.hubs = response.data;
return response.data;
}, function errorCallback(response) {
// Error response right here
});
};
返回数据。
function HubCtrl($scope,hub) {
// getAllHubs() now returns a promise
var hubsPromise = hub.getAllHubs();
// We have to '.then' it to use its resolved value, note that this is asynchronous!
hubsPromise.then(function(hubs){
$scope.hubs = hubs;
console.log('In ctrl ' + $scope.hubs);
});
$scope.addHub = function(_hub) {
console.log('In Ctrl ' + _hub);
hub.addHub(_hub);
};
}
这还不够,因为返回值实际上是$q Promise,要使用承诺的值:
{{1}}