如何计算猫鼬中具有一个不同字段的记录?

How to count records with one distinct field in mongoose?(如何计算猫鼬中具有一个不同字段的记录?)
本文介绍了如何计算猫鼬中具有一个不同字段的记录?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

在为 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).

这篇关于如何计算猫鼬中具有一个不同字段的记录?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

在开发JS过程中,会经常遇到两个小数相运算的情况,但是运算结果却与预期不同,调试一下发现计算结果竟然有那么长一串尾巴。如下图所示: 产生原因: JavaScript对小数运算会先转成二进制,运算完毕再转回十进制,过程中会有丢失,不过不是所有的小数间运算会
问题描述: 在javascript中引用js代码,然后导致反斜杠丢失,发现字符串中的所有\信息丢失。比如在js中引用input type=text onkeyup=value=value.replace(/[^\d]/g,) ,结果导致正则表达式中的\丢失。 问题原因: 该字符串含有\,javascript对字符串进行了转
Rails/Javascript: How to inject rails variables into (very) simple javascript(Rails/Javascript:如何将 rails 变量注入(非常)简单的 javascript)
CoffeeScript always returns in anonymous function(CoffeeScript 总是以匿名函数返回)
Ordinals in words javascript(javascript中的序数)
getFullYear returns year before on first day of year(getFullYear 在一年的第一天返回前一年)