收藏
回答

小程序文件上传、真机预览和调试都没有问题、体验版和正式版就不行、求解!

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 Bug wx.chooseImage 客户端 6.7.3 2.4.0




工具测试一切正常、体验版和正式版就不行了、有没有大神遇到过、求解!


这是代码片段:


chooseImage: function () {
    let that = this
    wx.chooseImage({
      success: function (res) {
        let file = res.tempFilePaths[0]
        wx.uploadFile({
          url: config.uploads,
          filePath: file,
          name: 'file',
          header: {
            'content-type': 'application/json',
            'Authorization': wx.getStorageSync('token_type') + ' ' + wx.getStorageSync('access_token'),
          },
          formData:{
            type: 'cover'
          },
          success: (res)=>{
            res = JSON.parse(res.data)
            if (res.resultCode == 200){
              that.setData({
                head: file,
                avatar: res.data
              })
            }
          }
        })
      },
    })
  }


回答关注问题邀请回答
收藏

5 个回答

登录 后发表内容