要显示 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() 即可。

