loadWithXhr
Asynchronously loads the given URL. Returns a promise that will resolve to the result once loaded, or reject if the URL failed to load. The data is loaded using XMLHttpRequest, which means that in order to make requests to another origin, the server must have Cross-Origin Resource Sharing (CORS) headers enabled.
Parameters:
Name | Type | Argument | Description |
---|---|---|---|
url |
String | Promise | The URL of the data, or a promise for the URL. | |
responseType |
String | The type of response. This controls the type of item returned. | |
headers |
Object |
<optional> |
HTTP headers to send with the requests. |
Returns:
Promise
a promise that will resolve to the requested data when loaded.
Example
// load a single URL asynchronously loadWithXhr('some/url', 'blob').then(function(blob) { // use the data }, function() { // an error occurred });