在为 nodejs 探索 mongoose 时,我遇到了需要知道我的集合中用户数量的问题:
While exploring mongoose for nodejs I ran into the problem of needing to know the amount of user in my collection:
我的收藏有记录,每条记录都有一个用户.我想知道唯一(不同)用户的数量.
My collection has records, each record has a user. I want to know the amount of unique (different) users.
我怎样才能用猫鼬做到这一点?
How can I do this with mongoose?
数据库增长很快,有没有办法从数据库中取回数字而不是获取所有不同的记录并计算它们?
The database is growing quite fast, is there anyway to get the number back from the DB instead of getting all the distinct records and counting them?
这是一个替代答案,因为当我尝试 Reddest 的 Mongoose 3.1.2 方法时遇到异常(这对我来说似乎是 Mongoose 中的一个错误,因为 Reddest 的方法应该没事).
Here's an alternative answer as I get an exception when I try Reddest's approach with Mongoose 3.1.2 (which seems like a bug in Mongoose to me as Reddest's approach should be fine).
您可以在集合的模型上调用 distinct 方法,指定该集合的用户标识字段的名称:
You can call the distinct method on your collection's model, specifying the name of the user-identifying field of that collection:
Record.distinct('user_id').exec(function (err, user_ids) {
console.log('The number of unique users is: %d', user_ids.length);
});
或者,如果您想从查找中链接 distinct 调用,请在 distinct 调用中包含回调(这对我有用):
Or if you want to chain the distinct call from a find, include the callback in the distinct call (this did work for me):
Record.find().distinct('user_id', function (err, user_ids) { ... });
更新
如果您只想要计数而不获取值,请在链中添加 count() 调用:
If you just want the count without getting the values, stick a count() call in the chain:
Record.distinct('user_id').count().exec(function (err, count) {
console.log('The number of unique users is: %d', count);
});
注意:这在最新的 Mongoose 代码 (3.5.2) 中不起作用.
NOTE: this doesn't work in the latest Mongoose code (3.5.2).
这篇关于如何计算猫鼬中具有一个不同字段的记录?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
检查一个多边形点是否在传单中的另一个内部Check if a polygon point is inside another in leaflet(检查一个多边形点是否在传单中的另一个内部)
更改传单标记群集图标颜色,继承其余默认 CSSChanging leaflet markercluster icon color, inheriting the rest of the default CSS properties(更改传单标记群集图标颜色,继承其余默认
触发点击传单标记Trigger click on leaflet marker(触发点击传单标记)
如何更改 LeafletJS 中的默认加载磁贴颜色?How can I change the default loading tile color in LeafletJS?(如何更改 LeafletJS 中的默认加载磁贴颜色?)
将 Leaflet 图层控件添加到侧边栏Adding Leaflet layer control to sidebar(将 Leaflet 图层控件添加到侧边栏)
Leaflet - 在弹出窗口中获取标记的纬度和经度Leaflet - get latitude and longitude of a marker inside a pop-up(Leaflet - 在弹出窗口中获取标记的纬度和经度)