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


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


Mongoose API 的 Model.prototype.deleteOne() 方法用于删除集合中的任意一个文档。此方法删除与作为第一个参数提供给该方法的条件相匹配的第一个文档。

用法:

Model.prototype.deleteOne() 

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

  • condition: 它是一个选择要删除的文档的对象。
  • options: 它是一个具有各种属性的对象。
  • callback:它是一个回调函数,一旦执行完成就会运行。

返回: 模型.原型.deleteOne()函数返回一个承诺。结果包含一个具有deletedCount属性的对象,该属性指示删除了多少文档。

设置 Node.js 应用程序:

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

npm init

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

npm install mongoose

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

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

示例 1:在此示例中,我们使用 mongoose 建立了数据库连接,并通过 userSchema 定义了模型,具有两列或字段 “name” 和 “age”。最后,我们在 User 模型上使用 deleteOne() 方法,该方法将根据作为该方法的第一个参数给出的条件删除一个文档。在此示例中,我们使用 “name” 字段选择要删除的文档。

  • 应用程序.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, age: Number } 
) 
  
// Defining userSchema model 
const User = mongoose.model('User', userSchema); 
  
//deleteOne() 
User.deleteOne({ name: 'User2' }).then(result => { 
    console.log(result) 
});

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

node app.js

输出:

{ acknowledged: true, deletedCount: 1 }

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

示例 2:在此示例中,我们使用 “_id” 字段选择要删除的文档。以下是执行示例 2 的代码之前 “users” 集合中已存在的数据库结构和文档。

  • 应用程序.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, age: Number } 
) 
  
// Defining userSchema model 
const User = mongoose.model('User', userSchema); 
  
//deleteOne() 
User.deleteOne({ _id: '630dbf8bd614a646d94dfe46' }) 
   .then(result => { 
    console.log(result) 
});

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

node app.js

输出:

{ acknowledged: true, deletedCount: 1 }

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

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



相关用法


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