wx.uploadFile成功后会重新加载onload()
up: function (){ wx.chooseImage({ success: function (res) { var tempFilePaths = res.tempFilePaths wx.uploadFile({ url: app.globalData.PATH + '/class/up.php' , //仅为示例,非真实的接口地址 filePath: tempFilePaths[0], name: 'file' , formData: { 'user' : 'test' }, success: function (res) { var data = res.data //do something } }) } }) }, |
2 回复
你好,请提供一下出现问题的机型和微信版本,以及能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。