请求来的文件流转换为图片

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 => {
    ...
  })
posted @ 2020-01-13 15:30  阿臻  阅读(1324)  评论(0编辑  收藏  举报