我怎样才能 console.log() 一个 Blob 对象?

问题描述 投票:0回答:3

我有一个 Blob 对象,我想通过记录它的值来检查它。我只能看到

type
size
属性。有没有办法做到这一点?

console.logging a blob shows this

javascript blob console.log
3个回答
20
投票

使用 FileReader 查看 blob 内容的基本示例

var html= ['<a id="anchor">Hello World</a>'];
var myBlob = new Blob(html, { type: 'text/xml'});
var myReader = new FileReader();
myReader.onload = function(event){
    console.log(JSON.stringify(myReader.result));
};
myReader.readAsText(myBlob);


1
投票

2023 年更新,现在可以用

完成
await blob.text()

(感谢@Kaiido)


-1
投票

首先我们应该创建一个将 blob 转换为 base64 的函数:

const blobToBase64 = blob => {
  const reader = new FileReader();
  reader.readAsDataURL(blob);
  return new Promise(resolve => {
    reader.onloadend = () => {
      resolve(reader.result);
    };
  });
};

然后我们就可以利用这个函数来使用了

console.log

blobToBase64(blobData).then(res => {
  console.log(res); // res is base64 now
  // even you can click on it to see it in a new tab
});

© www.soinside.com 2019 - 2024. All rights reserved.