Mongoose API 的 Model.countDocuments() 方法用于计算集合中存在的文档数量。 countDocument() 方法根据匹配过滤器计算集合中文档的数量。
Model.countDocuments()方法接受四个参数:
- filter: 它是一个过滤掉需要更新的文档的对象。
- callback:它是一个回调函数,一旦执行完成就会运行。
返回类型:Model.create() 函数返回一个承诺。
设置 Node.js 应用程序:
步骤 1:使用以下命令创建 Node.js 应用程序:
npm init
步骤 2:创建 NodeJS 应用程序后,使用以下命令安装所需的模块:
npm install mongoose
项目结构: 项目结构将如下所示:
数据库结构:数据库结构如下所示,集合中存在以下文档。
示例 1:在此示例中,我们使用 mongoose 建立了数据库连接,并通过 customerSchema 定义了模型,具有两列 “name” 和 “orderCount”。最后,我们使用 countDocuments() 方法来获取集合中文档的计数,其中 “orderCount” 的值为 10。
- 应用程序.js:在app.js 文件中写入以下代码:
Javascript
// Require mongoose module
const mongoose = require("mongoose");
// Set Up the Database connection
mongoose.connect(
"mongodb://localhost:27017/geeksforgeeks", {
useNewUrlParser: true,
useUnifiedTopology: true,
});
// Defining customerSchema schema
const customerSchema = new mongoose.Schema({
name: String,
orderCount: Number,
});
// Defining customerSchema model
const Customer = mongoose.model("Customer", customerSchema);
// Calling countDocuments() on Customer model
Customer.countDocuments({ orderCount: 10 },
function (err, count) {
console.log("there are %d documents with orderCount
value as 10", count);
});
运行程序的步骤: 要运行应用程序,请从项目的根目录执行以下命令:
node app.js
输出:
在控制台上:
there are 3 documents with orderCount value as 10
您可以使用任何 GUI 工具以图形形式表示数据库。在这里,我使用 Robo3T GUI 工具进行图形表示。
示例 2:在此示例中,我们使用 mongoose 建立了数据库连接,并通过 customerSchema 定义了模型,具有两列 “name” 和 “orderCount”。最后,我们使用countDocuments()方法来获取集合中文档的计数,其中“name”的值为“Rahul”。
- 应用程序.js:在app.js 文件中写入以下代码:
Javascript
// Require mongoose module
const mongoose = require("mongoose");
// Set Up the Database connection
mongoose.connect("mongodb://localhost:27017/geeksforgeeks", {
useNewUrlParser: true,
useUnifiedTopology: true,
});
// Defining customerSchema schema
const customerSchema = new mongoose.Schema({
name: String,
orderCount: Number,
});
// Defining customerSchema model
const Customer = mongoose.model(
"Customer", customerSchema);
Customer.countDocuments({ name: "Rahul" },
function (err, count) {
console.log("there are %d documents
with name value as Rahul", count);
});
运行程序的步骤: 要运行应用程序,请从项目的根目录执行以下命令:
node app.js
输出:
在控制台上:
there are 1 documents with name value as Rahul
您可以使用任何 GUI 工具以图形形式表示数据库。在这里,我使用 Robo3T GUI 工具进行图形表示。
参考:https://mongoosejs.com/docs/api/model.html#model_Model-countDocuments
相关用法
- Mongoose Document Model.count()用法及代码示例
- Mongoose Document Model.create()用法及代码示例
- Mongoose Document Model.deleteOne()用法及代码示例
- Mongoose Document Model.updateOne()用法及代码示例
- Mongoose Document Model.populate()用法及代码示例
- Mongoose Document Model.replaceOne()用法及代码示例
- Mongoose Document Model.inspect()用法及代码示例
- Mongoose Document Model.prototype.model()用法及代码示例
- Mongoose Document Model.listIndexes()用法及代码示例
- Mongoose Document Model.estimatedDocumentCount()用法及代码示例
- Mongoose Document Model.updateMany()用法及代码示例
- Mongoose Document Model.where()用法及代码示例
- Mongoose Document Model.prototype.deleteOne()用法及代码示例
- Mongoose Document Model.init()用法及代码示例
- Mongoose Document Model.prototype.remove()用法及代码示例
- Mongoose Document Model.remove()用法及代码示例
- Mongoose Document Model.prototype.save()用法及代码示例
- Mongoose Document Model.deleteMany()用法及代码示例
- Mongoose Document Model.exists()用法及代码示例
- Mongoose Document Model.insertMany()用法及代码示例
- Mongoose Document Model.bulkWrite()用法及代码示例
- Mongoose Document prototype.getChanges()用法及代码示例
- Mongoose Document prototype.unmarkModified()用法及代码示例
- Mongoose Document prototype.replaceOne()用法及代码示例
- Mongoose Document prototype.get()用法及代码示例
注:本文由纯净天空筛选整理自kartikmukati大神的英文原创作品 Mongoose Document Model.countDocuments() API。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。