码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2020-01-13 16:14:01      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:流转   return   image   class   axios   buffer   array   java   turn   

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 => {
    ...
  })

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

标签:流转   return   image   class   axios   buffer   array   java   turn   

原文地址:https://www.cnblogs.com/shiazhen/p/12187514.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!