node.js - mongodb怎么对分组,不要统计
PHPz
PHPz 2017-04-17 15:32:02
0
1
578
mongo.getCollection('t_app').aggregate([
        {
            $group: {
                _id: {
                    FuncName: "$FuncName",
                    Platform: "$Platform",
                    UseDateTime:{  $dateToString: { format: "%Y-%m-%d", date: "$UseDateTime" }}
                }
            }
        }
    ]

上面只是一个构想。。。,我想根据这些key的字段要求,进行分组,,不需要统计,完整的应该怎么写?

PHPz
PHPz

学习是最好的投资!

Antworte allen(1)
阿神

$push

把结果 push 到数组里就行了。

mongo.getCollection('t_app').aggregate([
        {
            $group: {
                _id: {
                    FuncName: "$FuncName",
                    Platform: "$Platform",
                    UseDateTime:{  $dateToString: { format: "%Y-%m-%d", date: "$UseDateTime" }}
                },
                result : {$push : "$Platform"}
            }
        }
    ]
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage