gpt4 book ai didi

javascript - 如何在 mongodb (mongoose) 中覆盖子文档的数组属性

转载 作者:行者123 更新时间:2023-11-30 12:26:00 25 4
gpt4 key购买 nike

我有一个模式

{

name: {type:String}
.....
child : {type: [childSchema], []}

}

和一个子模式

{
x:{type:Number}
y:{type:Number},
options: {type:Array, default}
}

问题是虽然我可以使用特定的子 ID 更新单个子属性,但我无法更新/替换 Options 数组(只是一个字符串数组),我有

parent.findOneAndUpdate({
_id: id,
status: 'draft',
child: {
$elemMatch: {
_id: childId
}
}
}, {
$set: {
child.$.x : newX,
child.$.y : newy,
child.$.options : ['option1', 'option2']
}
}).lean().exec()

我也试过

$set: {
'child.$.x' : newX,
'child.$.y' : newy,
'child.$.options' : { '$all' ['option1', 'option2']}
}

我认为(但我不确定)也许我不能在这个级别使用任何 $ 函数($set、$all)

当我用谷歌搜索时,我似乎找到了更多关于更新子文档的链接,并且可以找到任何关于替换子文档中数组的内容,尝试查看 Mongodb & mongoose API,但除非我忽略了一些东西,否则我找不到任何有用的东西在这种情况下

谁能给我指出正确的方向

最佳答案

从 mongo shell 尝试更新,如以下示例所示:

> db.test.drop()
> db.test.insert({
"_id" : 0,
"children" : [
{ "_id" : 1, "x" : 1, "y" : 2, "options" : [1, 2, 3] },
{ "_id" : 2, "x" : 5, "y" : 8, "options" : [1, 6, 2] }
]
})
> db.test.update({ "_id" : 0, "children._id" : 1 },
{ "$set" : { "children.$.x" : 55, "children.$.y" : 22, "children.$.options" : [9, 8, 7] } }
)
> db.test.findOne()
{
"_id" : 0,
"children" : [
{ "_id" : 1, "x" : 55, "y" : 22, "options" : [9, 8, 7] },
{ "_id" : 2, "x" : 5, "y" : 8, "options" : [1, 6, 2] }
]
}

关于javascript - 如何在 mongodb (mongoose) 中覆盖子文档的数组属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29366632/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com