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


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM