有没有办法从 URL 创建一个对象/ blob 对象,如下所示:
blob:http://127.0.0.1:8888/4bd9114b-1adb-40ce-b55b-a38f803b849a
像这样:blob:111d6876-dc9c-4ec5-84a1-1004cae101b4
这是我到目前为止尝试过的代码:
var xhr = new XMLHttpRequest();
xhr.open('GET', source, true);
xhr.responseType = 'blob';
xhr.onload = function(e) {
alert('Response status - ' + this.status);
if (this.status == 200) {
var myBlob = this.response;
alert("Converted to Blob");
}
};
xhr.send();
this.status
但反应总是0
更新:
blob 来自剪贴板