axios
.get(`/captcha`, {
params: param,
responseType: `arraybuffer`
})
.then(response => {
return `data:image/png;base64,` + btoa(
new Uint8Array(response.data)
.reduce((data, byte) => data + String.fromCharCode(byte), ``)
);
}).then(data => {
...
})
這樣寫即可,
如果請求中沒有額外的頭資訊,只需要加img標籤src=請求介面地址即可