mongodb怎么显示文档数

1217
2023/9/14 20:32:36
栏目: 云计算
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

要显示 MongoDB 集合中的文档数,可以使用 count() 方法。这个方法接受一个查询文档作为参数,如果未提供查询文档,则会返回集合中的所有文档数。

以下是示例代码:

// 引入 MongoDB 客户端
const MongoClient = require('mongodb').MongoClient;
// 连接数据库
const url = 'mongodb://localhost:27017';
const dbName = 'mydatabase';
MongoClient.connect(url, function(err, client) {
if (err) throw err;
// 选择数据库
const db = client.db(dbName);
// 选择集合
const collection = db.collection('mycollection');
// 显示文档数
collection.count({}, function(err, count) {
if (err) throw err;
console.log('文档数:', count);
// 关闭连接
client.close();
});
});

上述示例中,我们连接到本地 MongoDB 服务器,并选择名为 mydatabase 的数据库和 mycollection 的集合。然后,使用 count() 方法来获取集合中的文档数。在回调函数中,我们打印出文档数,并关闭连接。

请注意,count() 方法在最新的 MongoDB 驱动程序中已被弃用,建议使用 countDocuments() 方法替代。使用方式相同,只需将方法名从 count() 改为 countDocuments() 即可。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: 怎么用mongodb存web日志