美文网首页
Json 与 blob 对象互相转换

Json 与 blob 对象互相转换

作者: Messix_1102 | 来源:发表于2020-07-22 09:46 被阅读0次

Json 对象打包成 blob 对象

let user = { 
    name: 'tom',
    id: 2,
    no: '2015454'
};
var userblob = new Blob([JSON.stringify(user)], {
    type: 'application/json'
});
console.log(userblob);
打印结果

把json对象解析出来

var reader = new FileReader();
reader.readAsText(userblob , 'utf-8');
reader.onload = function (e) {
    let readerres = reader.result;
    console.log(readerres);
    let parseObj = JSON.parse(readerres);
    console.log(parseObj);
}

打印结果如下


打印结果

相关文章

网友评论

      本文标题:Json 与 blob 对象互相转换

      本文链接:https://www.haomeiwen.com/subject/ogfzkktx.html