2020
10-28
10-28
vue下载二进制流图片操作
1、应项目要求,后台返回二进制流,而且乱码2、红色为必须this.$axios.post('/fishweb/agent/downLoad',this.stringify({filename:'qrCode.jpg'}),{responseType:'arraybuffer'//指定返回数据的格式为blob}).then((res)=>{varsrc='data:image/jpg;base64,'+btoa(newUint8Array(res).reduce((data,byte)=>data+String.fromCharCode(byte),''));this.srcImg=src;//图片回显varlink=document.createElement(...
继续阅读 >