美文网首页
前端处理后台返回二进制流乱码图片

前端处理后台返回二进制流乱码图片

作者: yujiawei007 | 来源:发表于2018-12-13 10:02 被阅读0次
    axios.get('/url', {
            responseType: 'arraybuffer'
          }).then(response => {
            return 'data:image/png;base64,' + btoa(
              new Uint8Array(response.data).reduce((data, byte) => data + String.fromCharCode(byte), '')
            )
          }).then(data => {
            this.img = data
          })
    

    相关文章

      网友评论

          本文标题:前端处理后台返回二进制流乱码图片

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