工具测试一切正常、体验版和正式版就不行了、有没有大神遇到过、求解!
这是代码片段:
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 }) } } }) }, }) } |
体验版开启调试模式可以,关闭就不行
请问您问题如何解决,我的是体验版和预览都无法上传,但是真机调试和开发者工具上调试都可以。
你没有给uploadFile配置域名
uploadFile合法域名配置项
感谢大神、已解决
我想问一下怎么解决滴呀
应该是你的域名问题,小程序正式上线 要求域名是https的
域名是https的、
那你自开发工具上去掉 不校验域名 可以用么?
小弟在线跪求各路大神解答