Tôi đã triển khai $ q.all trong anglejs, nhưng tôi không thể làm cho mã hoạt động. Đây là mã của tôi:
UploadService.uploadQuestion = function(questions){
var promises = [];
for(var i = 0 ; i < questions.length ; i++){
var deffered = $q.defer();
var question = questions[i];
$http({
url : 'upload/question',
method: 'POST',
data : question
}).
success(function(data){
deffered.resolve(data);
}).
error(function(error){
deffered.reject();
});
promises.push(deffered.promise);
}
return $q.all(promises);
}
Và đây là bộ điều khiển của tôi gọi các dịch vụ:
uploadService.uploadQuestion(questions).then(function(datas){
//the datas can not be retrieved although the server has responded
},
function(errors){
//errors can not be retrieved also
})
Tôi nghĩ rằng có một số vấn đề khi thiết lập $ q.all trong dịch vụ của mình.
deferred
không phải là deffered
:)
then(datas)
không? Cố gắng chỉpush
này:promises.push(deffered);