I've been using synchronous XMLHttpRequest with responseType set to "arraybuffer" for quite a while to load a binary file and wait until it is loaded. Today, I got this error: "Die Verwendung des responseType-Attributes von XMLHttpRequest wird im synchronen Modus im window-Kontekt nicht mehr unterstützt." which roughly translates to "Usage of responseType for XMLHttpRequest in synchronous mode in window-context(?) no longer supported."
Does anyone know how to fix this? I realy don't want to use an asynchronous request for something like this.
var xhr = new XMLHttpRequest(); xhr.open('GET', url, false); xhr.responseType = 'arraybuffer';
Works fine in chrome.
This is correct behaviour, as defined in the Specification of XMLHttpRequest:
When set: throws an
"InvalidAccessError"
exception if the synchronous flag is set and there is an associated XMLHttpRequest document.
The responseType
property cannot be set when the XMLHttpRequest
is not async, that is, synchronous. Setting the third parameter of open
to false
causes the request to be synchronous.
For the casual reader, if you still need the synchronous behavior, you can download your content as string and then convert it to byte data
NOTA:
This workaround assumes the original request.response
is an ASCII
text.
If this assumption doesn't fit your specific use case please see jBinary.
I convert it to an ArrayBuffer
.
var request = new XMLHttpRequest(); request.open('GET', url, false); request.send(null); var data; if (request.status === 200) { data = stringToArrayBuffer(request.response); } else { alert('Something bad happen!\n(' + request.status + ') ' + request.statusText); } // ... function stringToArrayBuffer(str) { var buf = new ArrayBuffer(str.length); var bufView = new Uint8Array(buf); for (var i=0, strLen=str.length; i<strLen; i++) { bufView[i] = str.charCodeAt(i); } return buf; }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With