Vue 读取后台二进制文件流转为图片显示
后台返回格式
<img :src="payImg" id="image" style="width: 150px;height: 150px;" alt="">
axios写法
重点 responseType: ‘blob’ , 使用的是res中的data blob
this.$axios.post('http://116.148.227.196:xxx/api/xxx/xxx', {参数}, {responseType: 'blob' // 重点}).then((res) => {const url = window.URL.createObjectURL(new Blob([res.data], { type: 'image/png' }));this.payImg= url;});
本文章参考 https://huaweicloud.csdn.net/63a56170b878a545459459f2.html