這是我工作的代碼。
appControllers.controller('MyaSellerOrderCtrl', ['$scope', '$rootScope', 'Order', '$http',
function($scope, $rootScope, Order, $http) {
$scope.results = [];
$scope.getData = function() {
$http.get('api/orders/business/?user_id=' + $rootScope.user.user_id).success(function(data){
for (var i = 0; i < data.length; i++) {
$http.get('api/orders/seller/?business_id=' + data[i].business_id).success(function(data1){
// console.log(data1);
$scope.results[i] = data1;
});
}
console.log($scope.results);
});
};
$scope.getData();
}]);
問題是,$ scope.results是空的,而功能正常工作。有人說這是由於$ http的異步性質。你能修改代碼來使用promise來避免錯誤嗎?
現在我更新的代碼所示
appControllers.controller('MyaSellerOrderCtrl', ['$scope', '$rootScope', '$http','$q',
function($scope, $rootScope, $http, $q) {
$scope.results = [];
function _getOrdersById(id) {
return $http.get('api/orders/business/?user_id=' + id);
}
function _parseOrders(orders) {
var _promises = [];
orders.forEach(function (order, index) {
var _promise = $http.get('api/orders/seller/?business_id=' + order.business_id).then(function (response) {
$scope.results[index] = response;
});
_promises.push(_promise);
});
return $q.all(_promises);
}
$scope.getData = function() {
_getOrdersById($rootScope.user.user_id)
.then(_parseOrders)
.then(function() {
console.log($scope.results);
}, function (error) {
console.error(error);
});
};
$scope.getData();
}
]);
,但它仍然顯示錯誤
159線點到線
orders.forEach(function(order,index) {
$ http已經是一個承諾。 – 2014-10-07 16:36:57