小程序
小游戏
企业微信
微信支付
扫描小程序码分享
用小程序云开发上传云存储文件,上传都是正常的,但是返回时候,回执地址漏了参数,最后废了半天劲才发现这个问题,如下图:
上传的路径是有一个/p/的文件夹,控制台console.log出来就漏了这个p,导致存入数据库还有其他引用的都报错了
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
你好,麻烦提供下相关云函数代码。
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
wx.cloud.uploadFile({
cloudPath: 'p/test/' + id + '/' + new Date().getTime()+ '.jpg',
filePath: file.url,
// 上传成功回调
success: res => {
wx.hideLoading();
console.log('frontImg', res.fileID)
}
})
const db = wx.cloud.database().collection('posture');
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
你好,麻烦提供下相关云函数代码。
wx.cloud.uploadFile({
cloudPath: 'p/test/' + id + '/' + new Date().getTime()+ '.jpg',
filePath: file.url,
// 上传成功回调
success: res => {
wx.hideLoading();
console.log('frontImg', res.fileID)
}
})
const db = wx.cloud.database().collection('posture');