我正在使用下面的代码打开一个本地文本文件。它在 firefox 中工作正常,但在 safari 中我收到错误,因为 “[object BlobConstructor]”不是构造函数(评估“new Blob([xhr.response])”) .请通过提供链接帮助我。
var xhr = new XMLHttpRequest(),blob;
xhr.open('GET', 'example.txt');
xhr.responseType = 'arraybuffer';
xhr.onload = function(e) {
blob = new Blob([xhr.response]);
console.log(blob);
}