這樣寫即可, 如果請求中沒有額外的頭信息,只需要加img標簽src=請求介面地址即可 ...
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=請求介面地址即可