美文网首页
vue 接收回显文件流

vue 接收回显文件流

作者: Augenstern___ | 来源:发表于2020-06-11 19:50 被阅读0次
_this.Axios.post('/Manage/SpuInfo/preview',
            {
             data
             },
             {
            responseType: "arraybuffer", 
        }).then(res => {
          return 'data:image/png;base64,' + btoa(
            new Uint8Array(res.data)
              .reduce((data, byte) => data + String.fromCharCode(byte), '')
          );
        }).then(data => {
          _this.previewImage = data //图片地址 <img src='data' />
     
        })

responseType: “arraybuffer”, 是必须的 下面 转自:https://www.jianshu.com/p/6705e2eabaa1

···axios.post(apiUrl, formdata, {responseType:'arraybuffer'}).then().catch();
axios 文档对responseType 的说明
`responseType` 表示服务器响应的数据类型,可以是 'arraybuffer', 'blob', 'document', 'json', 'text', 'stream'
默认的 responseType: 'json',

相关文章

网友评论

      本文标题:vue 接收回显文件流

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