Ho implementato $ q.all in angularjs, ma non riesco a far funzionare il codice. Ecco il mio codice:
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);
}
Ed ecco il mio controller che chiama i servizi:
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
})
Penso che ci sia qualche problema nell'impostare $ q.all nel mio servizio.
deferred
Non deffered
:)
then(datas)
? Prova a fare propriopush
questo:promises.push(deffered);