所以,我有一个blob作为拉链内的txt。我可以访问txt文件,但我无法打开它。我已经通过npm安装了FileReader并尝试了我在stackoverflow https://stackoverflow.com/questions/23024460/javascript-i-created-a-blob-from-a-string-how-do-i-get-the-string-back-out
上看到的内容,但我什么也没有得到任何警报或日志。
convertInText = (blob) => {
let reader = new FileReader();
reader.readAsText(blob, "ANSI");
reader.onloadend = function(e) {
console.log(reader.result);
};
};
还导入了FileReader,但没有结果。