当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Mongoose Document Model.estimatedDocumentCount()用法及代码示例


Mongoose API 的 Model.estimatedDocumentCount() 方法用于计算 MongoDB 集合中的文档数量。它对于大型集合很有用。它比 mongoose 提供的其他方法更快,因为它收集元数据而不是扫描整个集合。

用法:

Model.prototype.deleteOne() 

Parameters: Model.prototype.deleteOne() 方法接受四个参数:

  • options: 它是一个具有各种属性的对象。
  • callback:它是一个回调函数,一旦执行完成就会运行。

返回: 型号.estimatedDocumentCount()函数返回一个查询对象。

设置 Node.js 应用程序:

步骤 1:使用以下命令创建 Node.js 应用程序:

npm init

步骤 2:创建 NodeJS 应用程序后,使用以下命令安装所需的模块:

npm install mongoose

项目结构: 项目结构将如下所示:

示例 1:在此示例中,我们使用 mongoose 建立了数据库连接,并通过 userSchema 定义了模型,具有两列或字段 “name” 和 “age”。最后,我们使用的是estimatedDocumentCount()User 模型上的方法将返回一个查询对象。

  • 应用程序.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 userSchema 
const userSchema = new mongoose.Schema({ 
    name: String, 
    age: Number 
}); 
  
// Defining userSchema model 
const User = mongoose.model("User", userSchema); 
const output = User.estimatedDocumentCount(); 
console.log(output)

运行程序的步骤: 要运行应用程序,请从项目的根目录执行以下命令:

node app.js

输出:

示例-2:在此示例中,我们使用 mongoose 建立了数据库连接,并通过 StudentSchema 定义了模型,具有三个列或字段 “name”, “school” 和 “class”。最后,我们在 Student 模型上使用 estimatedDocumentCount() 方法,它将返回一个包含有关集合的元数据的查询对象。

  • 应用程序.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, 
}); 
  
const studentSchema = new mongoose.Schema({ 
    name: String, 
    school: String, 
    class: Number, 
}); 
  
// Defining studentSchema model 
const Student = mongoose.model("Student", studentSchema); 
const output = Student.estimatedDocumentCount() 
console.log(output)

运行程序的步骤: 要运行应用程序,请从项目的根目录执行以下命令:

node app.js

输出:

参考: https://mongoosejs.com/docs/api/model.html#model_Model-estimatedDocumentCount



相关用法


注:本文由纯净天空筛选整理自kartikmukati大神的英文原创作品 Mongoose Document Model.estimatedDocumentCount() API。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。