mongoose count()方法查询的结果如何以数组返回?

发布于 2022-09-06 12:38:26 字数 431 浏览 14 评论 0

我想用mongoose的count方法查询stations集合里各个部门的数量,push进一个数组然后返回给Echarts,可是响应的却是空的数组,请教各位大神应该怎么解决?

router.get('/chart', function (req, res, next) {
  let depts = ['部门1', '部门2', '部门3', '部门4', '部门5',
    '部门6', '部门7', '部门8'];
  let department = [];
  for(let x in depts){
    stations.count({"dept": depts[x]}).exec(function (err, counts) {
      department.push(counts);
    });
  }
  res.json(department);
});

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

琉璃梦幻 2022-09-13 12:38:26
let department = [];
  let asynQuery = () => {
    return new Promise( (resolve, reject) => {
      stations.aggregate([{$group: {_id: "$dept", count: {$sum: 1}}}]).exec(function (err, doc) {
        department.push(doc);
        resolve(department);
      });
    });
  }
  asynQuery().then(department=>{
    res.json(department)
  });

原来是异步的问题,通过Promise解决了

稳稳的幸福 2022-09-13 12:38:26

用Aggregation吧,很好实现。你这样得查n次,用aggregation只用一次查出所有。以下是shell示例(并不太熟悉mongoose...)

let department = []
db.stations.aggregate([
    {$group: {_id: "$dept", count: {$sum: 1}}}
]).forEach(doc => {
    department.push(doc.count);
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文