Created
May 6, 2021 15:29
-
-
Save passandscore/7474d8d8fc7ffa04c685d1e25be02738 to your computer and use it in GitHub Desktop.
XML HTTP Request
This file contains hidden or 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 get(url) { | |
// Return a new promise. | |
return new Promise(function(resolve, reject) { | |
// Do the usual XHR stuff | |
var req = new XMLHttpRequest(); | |
req.open('GET', url); | |
req.onload = function() { | |
// This is called even on 404 etc | |
// so check the status | |
if (req.status == 200) { | |
// Resolve the promise with the response text | |
resolve(req.response); | |
} | |
else { | |
// Otherwise reject with the status text | |
// which will hopefully be a meaningful error | |
reject(Error(req.statusText)); | |
} | |
}; | |
// Handle network errors | |
req.onerror = function() { | |
reject(Error("Network Error")); | |
}; | |
// Make the request | |
req.send(); | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment