返回多个计数的对象

时间:2017-03-09 01:09:51

标签: mongodb mongoose mongodb-query aggregation-framework

我正在尝试查询文档并返回一个对象,该对象在一个键中列出了3个不同场景的三个计数。以下是集合的组织方式:

{
  response_main:{
    type: Schema.ObjectId,
    ref: "topics"
  },
  response_in: {
    type: Number
  }
}

需要对response_in密钥进行排序,以确定它是否为0,1或2.我目前解决此问题的方法是:

Collection.aggregate([
  {$match: {response_main: mainTopic._id}},
  {$group: {
    _id: {
      $cond: {if: {$eq: ["$response_in", 0]}, then: "agree", else:{
        $cond: {if: {$eq: ["$response_in", 1]}, then: "neutral", else:{
          $cond: {if: {$eq: ["$response_in", 2]}, then: "disagree", else:false}
        }
      }
    }, count: {$sum: 1}
  }}
], callback);

返回数据的格式是一个对象数组,如下所示:

[
  {
    "_id": "agree",
    "count": 14
  },
  {
    "_id": "neutral",
    "count": 12
  },
  {
    "_id": "disagree",
    "count": 16
  }
]

但是,我更希望返回的对象看起来像这样:

{
  "agree": 14,
  "neutral": 12,
  "disagree": 16,
}

我是否有另一种方法可以构建我的查询以实现更简洁的结果?

1 个答案:

答案 0 :(得分:0)

在发送JSON响应之前重新格式化数据,一切都很好。