小程序
小游戏
企业微信
微信支付
扫描小程序码分享
查论坛有人说解决了,可没说具体如何解决的。
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
db.collection('count').where({ }) .update({ data: { ac_id:1642865480427// 这个 ac_id字段可以是之前不存在的 } })
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
能不能描述一下具体遇到的问题?
db.collection('test')
.doc('c4747cd45f98e4a300211b5e358603e4')
.update({
data: {
price: 3 // 这个 price 字段之前不存在
}
})
async function updateUserCollectId(event) {
const wxContext = cloud.getWXContext()
try {
return await db.collection('collect').where({
_openid: wxContext.OPENID
}).update({
data: {collectCardId:event.collectCardId},
success: res => {
console.log('云函数updateCollect collectCardId 成功!')
},
fail: err => {
console.error('云函数updateCollect collectCardId 失败:', err)
} catch(e) {
console.error(e)
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
db.collection('count').where({ }) .update({ data: { ac_id:1642865480427// 这个 ac_id字段可以是之前不存在的 } })
能不能描述一下具体遇到的问题?
db.collection('test')
.doc('c4747cd45f98e4a300211b5e358603e4')
.update({
data: {
price: 3 // 这个 price 字段之前不存在
}
})
async function updateUserCollectId(event) {
const wxContext = cloud.getWXContext()
try {
return await db.collection('collect').where({
_openid: wxContext.OPENID
}).update({
data: {collectCardId:event.collectCardId},
success: res => {
console.log('云函数updateCollect collectCardId 成功!')
},
fail: err => {
console.error('云函数updateCollect collectCardId 失败:', err)
}
})
} catch(e) {
console.error(e)
}
}