在前端开发中有时候不得不使用post的方式去获取一张图片,如何把响应的图片数据在页面上显示
1 2 3 4 5 6 7 8 9 10
| const uint8Array = new Uint8Array(response.data)
let imageBase64 = window.btoa(uint8Array.reduce(function (data, byte) { return data + String.fromCharCode(byte) }, ''))
imageBase64 = 'data:image/jpeg;base64,' + imageBase64
|