文件:
{ "group" : "G1", "cat" : "Cat1", "desc": "Some description 1"}
{ "group" : "G1", "cat" : "Cat2", "desc": "Some description 2"}
{ "group" : "G1", "cat" : "Cat1", "desc": "Some description 3"}
{ "group" : "G1", "cat" : "Cat3", "desc": "Some description 4"}
{ "group" : "G1", "cat" : "Cat2", "desc": "Some description 4"}
有人可以帮我使用Mongoose,如何查找具有唯一group
和cat
的记录?
从distinct
的Mongoose API,我理解我只能使用一个字段。但是Model.distinct
可以用来根据两个字段查找文档吗?
答案 0 :(得分:6)
我不能给你一个Mongoose的具体例子,你的问题有点模糊。聚合等价于“但可以使用Model.distinct来查找基于两个字段的文档吗?”是:
db.test.aggregate( { $group: { _id: { group: "$group", cat: "$cat" } } } );
返回:
{
"result" : [
{
"_id" : {
"group" : "G1",
"cat" : "Cat3"
}
},
{
"_id" : {
"group" : "G1",
"cat" : "Cat2"
}
},
{
"_id" : {
"group" : "G1",
"cat" : "Cat1"
}
}
],
"ok" : 1
}
如果您想找到只发生一次的组/猫组合,那么您可以使用:
db.test.aggregate(
{ $group: {
_id: { group: "$group", cat: "$cat" },
c: { $sum: 1 },
doc_ids: { $addToSet: "$_id" }
} },
{ $match : { c: 1 } }
);
返回:
{
"result" : [
{
"_id" : {
"group" : "G1",
"cat" : "Cat3"
},
"c" : 1,
"doc_ids" : [
ObjectId("5112699b472ac038675618f1")
]
}
],
"ok" : 1
}
从http://mongoosejs.com/docs/api.html#model_Model.aggregate我了解到你可以在Mongoose中使用聚合框架,如:
YourModel.aggregate(
{ $group: { _id: { group: "$group", cat: "$cat" } } },
function(err, result) {
console.log(result)
}
)