【Node.js】mongoose教程07--排重与计数

本文是Node.js中Mongoose库的教程,重点讲解如何使用Mongoose进行数据排重和计数操作。通过实例解析,帮助开发者掌握在MongoDB数据库中高效管理数据的方法。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

文章目录
  1. 1. 排重
  2. 2. 计数

排重

本文的查询是指存储了5个手机数据后再查询。存储实现见文章:【Node.js】mongoose教程—存储

GitHub源码链接:sodino#MongoDemo


       
       
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
       
       
Query #distinct([field], [criteria], [callback])
Declares or executes a distict() operation.
Parameters:
[field] < String>
[criteria] < Object, Query>
[callback] < Function>
Returns:
< Query> this
See:
distinct
Passing a callback executes the query.
Example
distinct(field, conditions, callback)
distinct(field, conditions)
distinct(field, callback)
distinct(field)
distinct(callback)
distinct()

唉唉,以上的官方文档,写了跟没写有什么区别。

field:可选项。String,用于指定需要排重的字段名称。当field不填写时,不能用空字符串“”代替,不填时也不出出现criteria参数。
criteria:可选项。用于指定需要排重的范围。相当于find()的查询条件。
callback:可选项。用于接受排重的结果。当没有填写该值时,可以通过链式调用Query.exec(callback)获取排重结果。

在存储实现的文章中共存了5个手机型号数据,可以用排重Query.distinct()提出这些手机都是哪个国家生产的,并且这些国家的名字只出现一次。

       
       
1
2
3
4
5
6
7
8
9
10
       
       
function findAllCountry() {
Phone.find ({}).distinct('manufacturer.country').exec((err, countrys)=>{
console.log( '---findAllCountry()---Remove duplicate------------------------------');
if (err) {
console.log(err);
} else {
console.log(countrys);
}
});
}

控制台输出:
findAllCountry


计数

       
       
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
       
       
Query #count([criteria], [callback])
Specifying this query as a count query.
Parameters:
[criteria] <Object> mongodb selector
[ callback] <Function>
Returns:
<Query> this
Passing a callback executes the query.
Example:
var countQuery = model.where({ 'color': 'black' }).count();
query.count({ color: 'black' }).count( callback)
query.count({ color: 'black' }, callback)
query.where( 'color', 'black').count( function (err, count) {
if (err) return handleError(err);
console.log( 'there are %d kittens', count);
})

可以使用Query.count()进行计数。

criteria:可选参数,表示要计数的查询条件。当表示要全部计数时,可用空对象{}代替。
callback:可选参数,用于接收计数结果。

以下代码演示统计当前的Phone数量:

       
       
1
2
3
4
5
6
7
8
9
10
11
12
13
       
       
phoneSchema.statics.printCount = function() {
// 其它的count()计算方法见以下链接: http: //mongoosejs.com/docs/api.html #query_Query-count
// Model.count([selector], [callback])
this.count ({}, (err, count) => {
console.log( '---printCount()-----------------------------')
if (err) {
console.log(err);
} else {
console.log( 'phone count=' + count);
}
});
};

控制台输出:
count


下一篇mongoose教程—更新


About Sodino

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值