具有查找功能的mongodb聚合

时间:2015-01-01 16:38:40

标签: javascript node.js mongodb

我有一个类似于这个的模型:

{
  email: String,
  name: String,
  role: String,
  location: {
    country: String,
    city: String
  },
  contacts: {
    email: String,
    phone: String
  }
}

我需要在我的视图中显示整个用户信息,但我希望还包括来自某个国家/地区的用户数量。

使用aggregate我不知道如何让完整的用户访问我创建的群组。

所以现在我正在做的是:

User.find({}, function(err, users) {
  User.aggregate([
    { $group: { _id: { country: '$location.country' }, count: { $sum: 1 }}}
  ], function(err, results) {
    res.render('home', {
      users: users,
      countries: results
    });
  });
});

正如您所看到的,我使用“查找”然后进行汇总以获取我需要的信息......但我非常确定有一种方法可以仅使用aggregate来获取它我找不到怎么做......

1 个答案:

答案 0 :(得分:1)

如果您需要累积每个组的整个用户信息,则需要使用$push运算符进行累积,并使用$$ROOT系统变量来访问整个用户信息。

User.aggregate([
{$group:{"_id":{"country":"$location.country"},
         "users":{$push:"$$ROOT"},
         "count":{$sum:1}}}
],callback)

如果您只想累积用户信息文档的特定字段,可以按下以下所需的字段:

User.aggregate([
{$group:{"_id":{"country":"$location.country"},
         "users":{$push:{"email":"$email","name":"$name"}},
         "count":{$sum:1}}}
],callback)