首先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 />