gpt4 book ai didi

javascript - 使用 updateMany() 和 MongoDB 时映射到正确的数组

转载 作者:行者123 更新时间:2023-11-30 20:40:28 24 4
gpt4 key购买 nike

在我的 MongoDB/Node 后端,我试图编写一个函数来接收用户输入的 ID,然后更新一个名为 subscription.subscriptionEnd 的字段,该字段与每个传入的 ID 相匹配。

我要更新的值对于所有输入的记录都是相同的。我的挑战是在名为“订阅”(位于文档的根目录)的数组中定位正确的元素。我想要做的只是为每个与输入的 ID 之一匹配的数组元素更新 subcriptionEnd 属性。

我的数据是这样的:

{
"_id": "1234",
"name": {
"first": "John",
"last": "Smith"
},
"branch": "New York",
"dob": null,
"subscription": [
{
"field1": null,
"field2": null,
"subscriptionEnd": "2015-05-31T00:00:00.000Z",
"_id": "7777"
},
{
"field1": null,
"field2": null,
"subscriptionEnd": "2015-05-31T00:00:00.000Z",
"_id": "9999"
}
]
}

因此,想象这样一种情况,我只想为“_id”为“7777”的数组元素更新“subscriptionEnd”属性值,而不为“_id”为“9999”的数组元素更新.

如何正确制作这些 map ?昨天的一位评论者通过执行以下操作提到了动态映射:

db.collection('clients').updateMany( 
{ _id: { $in: mongoArrRecords }, "subscription.someOtherProp":value},
{ $set: { "subscription.$.subscriptionEnd": lastDayOfMonth } }
)

但我不清楚在这种情况下是什么映射到什么。有没有一种方法可以确保此映射正确 - 仅针对包含输入 ID 之一的相同数组元素?

当然,如果我知道有问题的数组元素,我可以直接定位,如下所示:

db.collection('clients').updateMany( 
{ _id: { $in: mongoArrRecords } },
{ $set: { "subscription.0.subscriptionEnd": lastDayOfMonth } }
)

但是我不知道这个。

知道的是它是相同的数组元素,其中 _id 作为数组的一部分通过 $in 传入运算符映射到。

最佳答案

您需要使用两个数组属性。一个要查询的数组属性和另一个要更新的数组属性。

尝试

db.collection('clients').updateMany( 
{ "subscription._id":{ $in: mongoArrRecords }},
{ $set: { "subscription.$.subscriptionEnd": lastDayOfMonth } }
)

只要您为一个数组定位一个 objectid,这应该有效。

您可以使用 [<identifier>] 扩展上述方法使用 3.6 中的 arrayFilters 概念定位单个文档中的多个数组元素。

db.collection('clients').updateMany(
{ },
{ $set: { "subscription.$[subr].subscriptionEnd" : lastDayOfMonth } },
{
arrayFilters: [{ "subr._id":{ $in: mongoArrRecords }} ]
}
)

关于javascript - 使用 updateMany() 和 MongoDB 时映射到正确的数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49325728/

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