mongoose count()方法查询的结果如何以数组返回?
我想用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
原来是异步的问题,通过Promise解决了
用Aggregation吧,很好实现。你这样得查n次,用aggregation只用一次查出所有。以下是shell示例(并不太熟悉mongoose...)