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


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


Mongoose API 的 Model.remove() 方法用于一次性删除集合中存在的所有文档。它将在已定义并存在于数据库中的集合模型上调用。

用法:

Model.remove()

参数:模型.remove()方法接受两个参数:

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

返回类型:Model.remove() 函数返回一个承诺。

设置 Node.js 应用程序:

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

npm init

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

npm install mongoose

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

数据库结构:数据库结构如下所示,集合中存在以下文档。

示例 1:在此示例中,我们使用 mongoose 建立了数据库连接,并通过 customerSchema 定义了模型,具有三个列或字段 “name”、“orderCount” 和 “superUser”。最后,我们使用的是remove()客户模型上的方法,该方法将删除客户模型中存在的所有文档。在输出中,我们将得到一个具有两个属性的对象:- “acknowledged” 表示一切顺利,“deletedCount” 表示删除的文档数量。

  • 应用程序.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, superUser: Boolean} 
) 
  
// Defining customerSchema model 
const Customer = mongoose.model('Customer', customerSchema); 
  
Customer.remove().then(result => { 
    console.log(result) 
})

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

node app.js

输出:

{ acknowledged: true, deletedCount: 3 }

使用 Robo3T GUI 工具的数据库的 GUI 表示:

示例2:在此示例中,我们定义 usersSchema 和 User Model。在用户模型上,我们调用remove()最后,从数据库中删除所有记录后,我们在 User 模型上使用 find() 方法搜索文档,结果为空,这表明 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
}) 
  
const userSchema = new mongoose.Schema( 
    { name: String } 
) 
  
// Defining userSchema model 
const User = mongoose.model('User', userSchema); 
  
User.remove().then(result => { 
    console.log(result) 
}) 
  
User.find({_id: '630db5818577bafc2709d603'}). 
   then(result => { 
    console.log(result) 
})

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

node app.js

输出:

{ acknowledged: true, deletedCount: 2 }
[]

使用 Robo3T GUI 工具的数据库的 GUI 表示:

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



相关用法


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