Last active
August 31, 2022 02:38
-
-
Save pbojinov/ca377fd51c69531a8029 to your computer and use it in GitHub Desktop.
simple jQuery Deferred example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getData() { | |
var deferred = $.Deferred(); | |
$.ajax({ | |
'url': 'http://google.com', | |
'success': function(data) { | |
deferred.resolve('yay'); | |
}, | |
'error': function(error) { | |
deferred.reject('boo'); | |
} | |
}); | |
return deferred.promise(); | |
} | |
$.when(getData()).done(function(value) { | |
alert(value); | |
}); | |
getData().then(function(value) { | |
alert(value); | |
}); |
$.ajax already returns a deferred/promise.
function getData() {
return $.ajax({
'url': 'http://foo.com',
'success': function(data) {
return data;
},
'error': function(error){
console.log("An error occurred:", error);
}
});
}
$.when(getData).then(function(value) {
if(value){
alert(value);
} else {
console.log("Successful ajax call, but no data was returned");
}
});
@jeremyroelfs thank you for the clarification, this was me attempting to learn and document some commonly used patterns but obviously my understanding at the time wasn't correct
I think its awesome you doing gists of your work! Keep it up man! That helps others!!!
Complete example!
function getData() {
var deferred = $.Deferred();
$.ajax({
'url': 'http://google.com',
'success': function(data) {
deferred.resolve('yay');
},
'error': function(error) {
deferred.reject('boo');
}
});
return deferred.promise();
}
$.when(getData()).done(function(value) {
alert(value);
});
getData().then(
function(value) {
alert(value);
},
function (error) {
alert(error);
});
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks, just one note: for testing purposes it would be better to use 'url': window.location.origin or one may come across cross-origin request issue