使用update函数之后,云开发数据库集合数据无法更新
你直接复制这段代码试试
wx.cloud.uploadFile({
// 指定上传到的云路径
cloudPath: new Date().getTime()+'png',
// 指定要上传的文件的小程序临时文件路径
filePath: tempFilePaths[0],
// 成功回调
success: res => {
console.log(res.fileID)
db.collection('Image').add({
data:{
fileID:res.fileID
}
}).catch(err=>{
console.error(err)
}).then(res=>{
console.log(res)
})
console.log('上传成功', res)
},
fail:console.error
})