In jQuery 3 (see issue) it looks like progress
on $.when
changed behaviour. I'm looking to get a progress notification when each of my deferreds is resolved:
var urls = [
'https://httpbin.org/delay/2',
'https://httpbin.org/delay/1'
];
console.log('started');
var deferreds = $.map(urls, function(url) {
var d = $.Deferred();
$.ajax({
url: url,
type: 'GET'
})
.always(function(){
console.log('done %o', url)
d.notify();
d.resolve.apply(this, arguments);
});
return d.promise();
});
$.when.apply(jQuery, deferreds).progress(function(){
// Does not call
console.log('progress?');
}).done(function(){
console.log('all done');
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
Code also on codepen. Current output:
"started"
"done https://httpbin.org/delay/1"
"done https://httpbin.org/delay/2"
"all done"
I'd expect to see a progress?
output after each completed request.
Is there a nice way with the current jQuery API to achieve this behaviour?
Could you please try with following code:
Here we have added the
success
handler forajax
via which we are calling the deferred.notify() by which progress will get called