猫鼬聚合到数组数组

Mongoose Aggregation to array of arrays

我有这样的文档结构:

{
  readings: [
    { t: 'temperature', r: 130 },
    { t: 'humidity', r: 100 }
  ],
  created_at: '2021-01-05T10:28:49.070Z'
},
{
  readings: [
    { t: 'temperature', r: 123 },
    { t: 'humidity', r: 456 }
  ],
  created_at: '2021-01-05T10:32:50.727Z'
}

我需要汇总特定阅读类型的文档。 例如,阅读类型 temperature 的聚合结果应如下所示:

[
  [130, '2021-01-05T10:28:49.070Z'],
  [123, '2021-01-05T10:32:50.727Z']
]

如何使用聚合管道或其他方式执行此操作?

您不能从聚合管道输出数组数组。但是您可以输出具有单个数组字段的对象。即:

[
  {data: [130, '2021-01-05T10:28:49.070Z']},
  {data: [123, '2021-01-05T10:32:50.727Z']}
]

这是一个可以做到这一点的管道 https://mongoplayground.net/p/7UPyUICOncq

let result = await collection.aggregate([
    {$unwind: '$readings'},
    {$match: {
      'readings.t': 'temperature'
    }},
    {"$project": {
        _id: 0,
        data: ['$readings.r', '$created_at']
    }}
])

然后要达到您想要的格式,只需映射输出

let formattedResult = result.map(({data}) => data)