美文网首页
解决接收后台二进制图片乱码问题

解决接收后台二进制图片乱码问题

作者: 命题_1f6e | 来源:发表于2019-10-09 10:14 被阅读0次
  axios({
     url : 'http//:182.12.13.587/api/get/img' + 跟后台定好参数,
     method : "post",
     responseType :"arraybuffer",
     headers :{
         "Content-Type" : "multipart/form-data;charset=UTF-8"
     }
       }).then(res=>{
           let blob = new Blob([res.data],{type:"application/vnd.ms-excel"})
           let imgUrl = URl.createobkectURl(blob)
           console.log(imgUrl)
     })
   })

相关文章

网友评论

      本文标题:解决接收后台二进制图片乱码问题

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