小程序
小游戏
企业微信
微信支付
扫描小程序码分享
云数据库中记录的每一个字段是一个数组,如
rank:[{"name":"a","value":"7"},{"name":"b","value":"7"},{"name":"c","value":"9"}]
怎么局部更新name为a的对象的value属性?
去年其他人提过该问题,地址
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
支持的。https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/database/query-array-object.html
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
一样的,比如记录
{
name: 'abc',
root: {
numbers: [1,2,3],
objects: [{ age: 18 }, { age: 20 } ],
},
}
要更新 root 里 objects 的第二个元素的 age 从 20 到 22:
db.collection('test').doc(100).update({
data: {
'root.objects.1.age': 22,
complete: console.log,
})
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
支持的。https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/database/query-array-object.html
一样的,比如记录
{
name: 'abc',
root: {
numbers: [1,2,3],
objects: [{ age: 18 }, { age: 20 } ],
},
}
要更新 root 里 objects 的第二个元素的 age 从 20 到 22:
db.collection('test').doc(100).update({
data: {
'root.objects.1.age': 22,
},
complete: console.log,
})