請求後臺接口時,返回圖片內容以下: 前端
咋一看,不是base64格式,二十二進制的圖片流數據,前端要想展現,只須要轉換數據格式爲base64便可。this
設置了arraybuffer後的接口返回:code
this.processImgSrc = 'data:image/png;base64,' + btoa(new Uint8Array(res.data).reduce((data, byte) => data + String.fromCharCode(byte), ''))