12

我正在使用 mongoose 开发 nodejs+mongodb 项目。现在我遇到了一个我不知道答案的问题。我正在使用聚合框架来获得分组结果。分组是在不包括时间数据字段的日期上完成的,例如:“2013 02 06”。代码如下所示:

MyModel.aggregate([
            {$match: {$and: [{created_date: {$gte: start_date}}, {created_date: {$lte: end_date}}]}},
            {$group: {
                _id: {
                    year: {$year: "$created_at"},
                    month: {$month: "$created_at"},
                    day: {$dayOfMonth: "$created_at"}
                },
                count: {$sum: 1}
            }},
            {$project: {
                date: {
                        year: "$_id.year",
                        month:"$_id.month",
                        day:"$_id.day"
                },
                count: 1,
                _id: 0
            }}
        ], callback);

分组的结果是完美的,只是它们没有排序。这是一个输出示例:

[
    {
        count: 1,
        date: {
            year: 2013,
            month: 2,
            day: 7
        }
    },
    {
        count: 1906,
        date: {
            year: 2013,
            month: 2,
            day: 4
        }
    },
    {
        count: 1580,
        date: {
            year: 2013,
            month: 2,
            day: 5
        }
    },
    {
        count: 640,
        date: {
            year: 2013,
            month: 2,
            day: 6
        }
    }
]

我知道排序是通过添加这个来完成的:{$sort: val}. 但是现在我不确定应该是什么,val所以结果将按日期排序,因为我的分组键是一个构造日期的 3 个值的对象。有谁知道如何做到这一点?

编辑 已经尝试过了,它奏效了:)

{$sort: {"date.year":1, "date.month":1, "date.day":1}}

4

3 回答 3

11

看来这个问题有一个非常简单的答案:) 只需要像这样按多个嵌套列排序:

{$sort: {"date.year":1, "date.month":1, "date.day":1}}
于 2013-02-08T16:33:46.400 回答
5

我遇到了同样的问题,谢谢你的回答。但我发现你可以用更少的代码得到相同的结果

MyModel.aggregate([
            {$match: {$and: [{created_date: {$gte: start_date}}, {created_date: {$lte: end_date}}]}},
            {$group: {
                _id: {
                    year: {$year: "$created_at"},
                    month: {$month: "$created_at"},
                    day: {$dayOfMonth: "$created_at"}
                },
                count: {$sum: 1}
            }},
            {$project: {
                date: "$_id", // so this is the shorter way
                count: 1,
                _id: 0
            }},
            {$sort: {"date": 1} } // and this will sort based on your date
        ], callback);
于 2014-05-29T20:20:09.837 回答
-1

如果您仅在有其他列要排序的情况下按日期排序,这将起作用。你需要扩展 _id

于 2015-08-14T19:24:20.153 回答