我有一个Blob对象,我想通过记录其值来检查。我只能看到type
和size
属性。有没有办法做到这一点?
最佳答案
使用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);