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 />
posted @ 2020-04-21 16:53  别闹啊  阅读(3671)  评论(0编辑  收藏  举报
Live2D