标签: javascript node.js mongodb
我尝试使用以下代码创建blob:
var res = JSON.parse(response); var file = new Blob([res.data], {type: res.headers['content-type']}); var fileURL = URL.createObjectURL(file); console.log(fileURL);
不会根据数据创建blob。例如。对于图像,它显示空的小图像。