赞
踩
- .then(response => response.blob())
- // 首先通过blob()将response转成blob类型
- .then(file_blob => {
- // 然后我们发现转出来的类型是application/octet-stream,不是我们所需要的类型
- // 通过重新构造一个Blob对象,可以在type中指定自己需要的类型
- let img_blob = new Blob([file_blob], {type: "image/jpeg"})
- console.log(img_blob)
- // 此处我需要的是图片,因此直接将其转为image,再通过URL.createObjectURL将blob转为url
- let img_url = URL.createObjectURL(img_blob)
- console.log(img_url)
- })
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。