码迷,mamicode.com
首页 > 微信 > 详细

微信支付

时间:2020-06-08 12:47:49      阅读:276      评论:0      收藏:0      [点我收藏+]

标签:color   支付   info   Fix   bsp   style   char   mime   img   

微信支付: 后台返回的是数据流

技术图片

 开始这样,但是不行,

 技术图片

 

 

 

在请求里面加入  ‘responseType‘: ‘blob‘ ,

 

技术图片

 

 

 

附上base64转图片

      //base64转换
      base64ImgtoFile(dataurl, filename = file) {
          let arr = dataurl.split(,)
          let mime = arr[0].match(/:(.*?);/)[1]
          let suffix = mime.split(/)[1]
          let bstr = atob(arr[1])
          let n = bstr.length
          let u8arr = new Uint8Array(n)
          while (n--) {
              u8arr[n] = bstr.charCodeAt(n)
          }
          return new File([u8arr], `${filename}.${suffix}`, {
              type: mime
          })
      },

 

微信支付

标签:color   支付   info   Fix   bsp   style   char   mime   img   

原文地址:https://www.cnblogs.com/0520euv/p/13064818.html

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