mongoose:使用$ pull删除嵌入式文档数组中的值(MongoDB 3.4版本)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mongoose:使用$ pull删除嵌入式文档数组中的值(MongoDB 3.4版本)相关的知识,希望对你有一定的参考价值。

我试图在节点js中使用mongoose从嵌套数组中删除值。我的架构结构是这样的:

    ([{_id: 1,


    results: [
      { item: "A", score: 5, answers: [ { q: 1, a: 4 }, { q: 2, a: 6 } ] },
      { item: "B", score: 8, answers: [ { q: 1, a: 8 }, { q: 2, a: 9 } ] }
   ]
},
{
   _id: 2,
   results: [
      { item: "C", score: 8, answers: [ { q: 1, a: 8 }, { q: 2, a: 7 } ] },
      { item: "B", score: 4, answers: [ { q: 1, a: 0 }, { q: 2, a: 8 } ] }
   ]
}])

我想从答案中删除值,其中a是8.我的查询是

db.collection.update({"results.item":{$in:["C","B"]}},{$pull:{"results.$.answers":{a:8}}})

此查询工作正常,但只更新一个文档。请帮忙。

我想要的输出是

([{
   _id: 1,
   results: [
      { item: "A", score: 5, answers: [ { q: 1, a: 4 }, { q: 2, a: 6 } ] },
      { item: "B", score: 8, answers: [ { q: 2, a: 9 } ] }
   ]
},
{
   _id: 2,
   results: [
      { item: "C", score: 8, answers: [ { q: 2, a: 7 } ] },
      { item: "B", score: 4, answers: [ { q: 1, a: 0 } ] }
   ]
}])

提前致谢。

答案

您需要MongoDB 3.6或更高版本的filtered positional $[<identifier>]支持单个语句:

db.collection.updateMany(
  { "results.item": { "$in": ["C","B"] } },
  { "$pull": { "results.$[el].answers": { "a": 8 } } },
  { "arrayFilters":  [{ "el.item": { "$in": ["C", "B"] } }] }
)

结果是:

{
        "_id" : 1,
        "results" : [
                {
                        "item" : "A",
                        "score" : 5,
                        "answers" : [
                                {
                                        "q" : 1,
                                        "a" : 4
                                },
                                {
                                        "q" : 2,
                                        "a" : 6
                                }
                        ]
                },
                {
                        "item" : "B",
                        "score" : 8,
                        "answers" : [
                                {
                                        "q" : 2,
                                        "a" : 9
                                }
                        ]
                }
        ]
}
{
        "_id" : 2,
        "results" : [
                {
                        "item" : "C",
                        "score" : 8,
                        "answers" : [
                                {
                                        "q" : 2,
                                        "a" : 7
                                }
                        ]
                },
                {
                        "item" : "B",
                        "score" : 4,
                        "answers" : [
                                {
                                        "q" : 1,
                                        "a" : 0
                                }
                        ]
                }
        ]
}
另一答案

默认情况下,update()方法更新单个文档。设置多参数以更新符合查询条件的所有文档。

设置{multi: true}或使用updateMany

参考:https://docs.mongodb.com/manual/reference/method/db.collection.update/

以上是关于mongoose:使用$ pull删除嵌入式文档数组中的值(MongoDB 3.4版本)的主要内容,如果未能解决你的问题,请参考以下文章

如何从深度嵌套的文档中 $pull (mongoose)

删除 mongoose 中的嵌入文档

为啥使用 Mongoose JS 删除嵌入式子文档数组的元素不起作用?

无法使用 $pull (Mongoose) 为用户模型删除数组中的对象

Mongoose 删除(拉)数组中的文档,不适用于 ObjectID

使用 mongoose 5.12 从数组中删除对象($pull 不起作用)