Skip to content

Instantly share code, notes, and snippets.

@kidager
Forked from matthewp/gist:3099268
Last active August 29, 2015 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kidager/e0444866a83822d03d4a to your computer and use it in GitHub Desktop.
Save kidager/e0444866a83822d03d4a to your computer and use it in GitHub Desktop.
Asynchronous request using promises
function xhr(options) {
var deferred = Q.defer(),
req = new XMLHttpRequest();
req.open(options.method || 'GET', options.url, true);
// Set request headers if provided.
Object.keys(options.headers || {}).forEach(function (key) {
req.setRequestHeader(key, options.headers[key]);
});
req.onreadystatechange = function(e) {
if(req.readyState !== 4) {
return;
}
if([200,304].indexOf(req.status) === -1) {
deferred.reject(new Error('Server responded with a status of ' + req.status));
} else {
deferred.resolve(e.target.result);
}
};
req.send(options.data || void 0);
return deferred.promise;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment