zoukankan      html  css  js  c++  java
  • 微信小程序

      test:function(){
        wx.request({
          url: this.data.url,
          data:{
            id:6
          },
          header:{
            token:登录令牌,
          },
          method: 'post',
          responseType: "arraybuffer", //此处是请求文件流,必须带入的属性
          success: function (res) {
              if(res.statusCode === 200){
                  var imgSrc =  wx.arrayBufferToBase64(res.data);//二进制流转为base64编码
                  var save = wx.getFileSystemManager();
                  var number = Math.random();
                  save.writeFile({
                      filePath: wx.env.USER_DATA_PATH + '/pic' + number + '.png',
                      data: imgSrc,
                      encoding: 'base64',
                      success: res => {
                          wx.saveImageToPhotosAlbum({ //保存为png格式到相册
                              filePath: wx.env.USER_DATA_PATH + '/pic' + number + '.png',
                              success: function (res) {
                                  wx.showToast({
                                      title: '下载成功',
                                      icon: 'none',
                                      duration: 2000, //提示的延迟时间,单位毫秒,默认:1500
                                  })
                              },
                              fail: function (err) {
                                  console.log(err)
                              }
                          })
                      }, 
                      fail: err => {
                          console.log(err)
                      }
                  })
              }
          },
          fail: function (error) {
              console.log(error);
          }
      });
      },

    做个记录,免得忘了

    技术最菜,头发最少
  • 相关阅读:
    铁大电梯调度需求分析
    结对开发2
    四则运算3
    团队开发——冲刺2.d
    团队开发——冲刺2.c
    团队开发——冲刺2.b
    团队开发——冲刺2.a
    团队开发——冲刺1.g
    团队开发——冲刺1.f
    团队开发——冲刺1.e
  • 原文地址:https://www.cnblogs.com/gushengyan/p/14859517.html
Copyright © 2011-2022 走看看