MongoDB请求:仅从嵌入数组中的嵌入文档中过滤特定字段

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MongoDB请求:仅从嵌入数组中的嵌入文档中过滤特定字段相关的知识,希望对你有一定的参考价值。

我遇到了一些我想要执行的MongoDB请求的麻烦。我在node.js上下文中使用MongoDB 3.2和Mongoose。这是文件:

{
  _id: ObjectId('12345'),
  name: "The name",
  components: [
    {
      name: "Component 1",
      description: "The description",
      container: {
        parameters: [
          {
            name: "Parameter 1",
            value: "1"
          },
          // other parameters
        ],
        // other information...
      }
    },
    // other components
  ]
}

我想在此输出中列出特定文档(使用_id)中特定组件(使用组件名称)的所有参数名称:

['Parameter 1', 'Parameter 2', ...]

我有一个mongoose Schema来处理我的应用程序中的finddistinct方法。我使用$定位算子尝试了很多操作。这是我的尝试,但返回所有组件的所有参数:

listParameters(req, res) {
  DocumentModel.distinct(
    "components.container.parameters.name", 
    {_id: req.params.modelId, "components.name": req.params.compId},
    (err, doc) => {            
      if (err) {
        return res.status(500).send(err);
      }
      res.status(200).json(doc);
    }
  );
}

但是输出是参数名称列表但没有特定组件的过滤器。你能帮我找到合适的要求吗? (如果可能在mongoose JS中,但如果它是一个Mongo命令行,那将非常好:))

答案

您需要运行使用$arrayElemAt$filter运算符的聚合管道来获得所需的结果。

$filter运算符将过滤components数组以返回满足给定条件的元素,而$arrayElemAt返回给定索引位置的数组中的文档。使用该文档,您可以将嵌套的parameters数组元素投影到另一个数组。

结合上述内容,您最好希望进行以下聚合操作:

DocumentModel.aggregate([
    { "$match": { "_id": mongoose.Types.ObjectId(req.params.modelId) } },
    { "$project": {
        "component": {
            "$arrayElemAt": [
                {
                    "$filter": {
                        "input": "$components",
                        "as": "el",
                        "cond": { "$eq": ["$$el.name", req.params.compId] }
                    }
                }, 0
            ]
        }
    } },
    { "$project": {
        "parameters": "$component.container.parameters.name"
    } }
], (err, doc) => {            
  if (err) {
    return res.status(500).send(err);
  }
  const result = doc.length >= 1 ? doc[0].parameters : [];
  res.status(200).json(result);
})
另一答案

我不知道如何用猫鼬做这件事,但这对你来说对mongo很有用

db.getCollection('your collaction').aggregate([ // change to youe collaction
    {$match: {_id: ObjectId("5a97ff4cf832104b76d29af7")}}, //change to you id
    {$unwind: '$components'},
    {$match: {'components.name': 'Component 1'}}, // change to the name you want 
    {$unwind: '$components.container.parameters'},
    {
        $group: {
            _id: '$_id',
            params: {$push: '$components.container.parameters.name'}
        }
    }


]);

以上是关于MongoDB请求:仅从嵌入数组中的嵌入文档中过滤特定字段的主要内容,如果未能解决你的问题,请参考以下文章

过滤 MongoDB 中的嵌入式数组

如何使用 mongodb 中的聚合在嵌入文档的数组中执行操作?

如何匹配 MongoDB 中嵌入式数组或文档中的字符串?

使用 Spring Data MongodB 更新嵌入式 mongodb 文档中的数组字段?

过滤和更新 mongodb mongoose 中的嵌入式数组

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