📜  blob 到文本 javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:06.408000             🧑  作者: Mango

代码示例2

.then(r=>r.blob())
.then(r=>{
console.log(r.type)
return new Response(r)
})
.then(r=>
 r.text()
)
.then(console.log)