小程序
小游戏
企业微信
微信支付
扫描小程序码分享
wx.uploadFile在app.js里调用无反应
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
登录mp后台,在开发设置中查看是否配置uploadFile合法域名
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
wx.uploadFile不是可以传入调用成功和调用失败的回调函数嘛,打印出来看一下为什么上传文件失败。
wx.chooseImage({ success (res) { const tempFilePaths = res.tempFilePaths wx.uploadFile({ url: 'https://example.weixin.qq.com/upload', //仅为示例,非真实的接口地址 filePath: tempFilePaths[0], name: 'file', formData: { 'user': 'test' }, success (res){ const data = res.data //do something } }) } })
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
登录mp后台,在开发设置中查看是否配置uploadFile合法域名
wx.uploadFile不是可以传入调用成功和调用失败的回调函数嘛,打印出来看一下为什么上传文件失败。
wx.chooseImage({ success (res) { const tempFilePaths = res.tempFilePaths wx.uploadFile({ url: 'https://example.weixin.qq.com/upload', //仅为示例,非真实的接口地址 filePath: tempFilePaths[0], name: 'file', formData: { 'user': 'test' }, success (res){ const data = res.data //do something } }) } })