axios.get('/url', {
responseType: 'arraybuffer'
}).then(response => {
return 'data:image/png;base64,' + btoa(
new Uint8Array(response.data).reduce((data, byte) => data + String.fromCharCode(byte), '')
)
}).then(data => {
this.img = data
})
网友评论