gpt4 book ai didi

node.js - 在 Mongoose 中按日期分组

转载 作者:可可西里 更新时间:2023-11-01 09:58:12 27 4
gpt4 key购买 nike

这是我的约会集合

{ _id: ObjectId("518ee0bc9be1909012000002"), date: ISODate("2013-05-13T22:00:00Z"), patient:"John" }

{ _id: ObjectId("518ee0bc9be1909012000002"), date: ISODate("2013-05-13T22:00:00Z"), patient:"alex" }

{ _id: ObjectId("518ee0bc9be1909012000002"), date: ISODate("2013-05-13T22:00:00Z"), patient:"sara" }

我怎样才能得到这样的结果

{date: ISODate("2013-05-13T22:00:00Z"),
patients:["John","alex","sara"] }

我试试这个

Appointments.aggregate([
{
$group: {
_id: '$date'
}
}
], function(err, doc) {
return console.log(JSON.stringify(doc));
});

请帮忙

最佳答案

使用$push 聚合运算符将patients 数组组装到$group 中:

Appointments.aggregate([
{$group: {_id: '$date', patients: {$push: '$patient'}}},
{$project: {date: '$_id', patients: 1, _id: 0}}
], ...)

在后续问题中包含患者 ID:

Appointments.aggregate([
{$group: {_id: '$date', patients: {$push: {
patient: '$patient'
_id: '$_id'
}}}},
{$project: {date: '$_id', patients: 1, _id: 0}}
], ...)

关于node.js - 在 Mongoose 中按日期分组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16630632/

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