Vue 加载二进制图片
首先axios请求必须加上responseType: 'blob',
export function getPicture(obj) { return request({ url: '/display/getDetailPicture', method: 'get', responseType: 'blob', params: obj }) }
getPicture({ id: id }).then(response => {
this.picUrl = window.URL.createObjectURL(response);
});
直接用不就可以了
<img style="width:200px;height:200px" :src="picUrl" alt />
每天成长一点点

浙公网安备 33010602011771号