小程序文件上传、真机预览和调试都没有问题、体验版和正式版就不行、求解!
工具测试一切正常、体验版和正式版就不行了、有没有大神遇到过、求解!
这是代码片段:
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 }) } } }) }, }) } |