我想通过记录其值来检查Blob对象。我所能看到的只有type
和size
属性。有没有办法做到这一点?
答案 0 :(得分:10)
使用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);