📌  相关文章
📜  如何使用 Node.js 计算 MongoDB 集合中的文档总数?

📅  最后修改于: 2022-05-13 01:56:19.197000             🧑  作者: Mango

如何使用 Node.js 计算 MongoDB 集合中的文档总数?

MongoDB是最流行的 NoSQL 数据库,我们可以使用 MongoDB collection.countDocuments()函数来统计 MongoDB Collection 中的文档数量。 mongodb 模块用于连接 MongoDB 数据库以及用于操作 MongoDB 中的集合和数据库。

安装模块:您可以使用以下命令安装mongodb模块。

node install mongodb

项目结构:

在本地 IP 上运行服务器:数据是 MongoDB 服务器所在的目录。

mongod --dbpath=data --bind_ip 127.0.0.1

MongoDB数据库

Database:GFG
Collection:aayush

以下是本示例存储在您的数据库中的示例数据。

文件名:index.js

Java
// Requiring module
const MongoClient = require("mongodb");
 
// Connection URL
const url = 'mongodb://localhost:27017/';
 
// Database name
const databasename = "GFG";
  
MongoClient.connect(url).then((client) => {
  const connect = client.db(databasename);
 
  // Connect to collection
  const collection = connect.collection("aayush");
 
  // Count the total documents
  collection.countDocuments().then((count_documents) => {
    console.log(count_documents);
  }).catch((err) => {
    console.log(err.Message);
  })
      
}).catch((err) => {
  // Printing the error message
  console.log(err.Message);
})


使用以下命令运行index.js文件:

node index.js

输出: