I was reading in the MDN documentation that it is possible to get a response Blob through ajax, according to the code below:
var oReq = new XMLHttpRequest();
oReq.open("GET", "/myfile.png", true);
oReq.responseType = "blob";
oReq.onloa...
asked by
09.08.2018 / 18:03