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


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


Mongoose API 的 Model.replaceOne() 方法用于替换集合中的任何一个文档。此方法的用法原理与 update 方法相同,但它使用任何原子运算符(即 $set)将 MongoDB 的现有文档替换为给定文档。

用法:

Model.replaceOne()

参数: 型号.replaceOne()方法接受四个参数:

  • filter:它是一个对象,用于过滤所有具有匹配字段的需要更新的文档。
  • doc:它是一个带有字段的对象,该字段将替换现有字段。
  • options:它是一个具有各种属性的对象。
  • callback:它是一个回调函数,一旦执行完成就会运行。

返回类型: 型号.replaceOne()函数返回一个承诺。结果包含一个具有以下键和值或属性的对象。

设置 Node.js 应用程序:

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

npm init

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

npm install mongoose

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

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

示例 1:在此示例中,我们使用 mongoose 建立了数据库连接,并通过 customerSchema 定义了模型,具有三个列或字段 “name”、“orderCount” 和 “superUser”。最后,我们使用的是replaceOne()Customer 模型上的方法,它将根据作为该方法的第一个参数给出的条件替换文档。并将该文档替换为对象中作为该方法的第二个参数给出的字段。在此示例中,我们根据 “_id” 过滤文档,并将其值替换为对象中作为第二个参数提供的字段。

  • 应用程序.js:在app.js 文件中写入以下代码:

Javascript


// Importing the 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); 
  
// replaceOne() method 
Customer.replaceOne({ _id: '630ca42f5e5d4f1de37cf654' }, 
    { name: 'Customer3', orderCount: 100, superUser: true }) 
     .then(result => { 
        console.log(result) 
    })

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

node app.js

输出:

{
  acknowledged: true,
  modifiedCount: 1,
  upsertedId: null,
  upsertedCount: 0,
  matchedCount: 1
}

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

示例2:在此示例中,我们根据 “_id” 过滤文档,并将其值替换为对象中作为第二个参数提供的字段。如果您在 GUI 输出中看到,我们将 “name” 字段从 “Customer2” 替换为“Customer2 示例 2”,并且还修改了 “orderCount” 的值,我们通过使用任何原子运算符(即 $set)来实现此函数。

  • 应用程序.js:在app.js 文件中写入以下代码:

Javascript


// Importing the 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); 
  
// Calling the replaceOne() method. 
Customer.replaceOne({ _id: '630ca4260edd88312bf28db1' }, 
    { 
        name: 'Customer2 Example2', 
        orderCount: 0, superUser: false
    }). 
    then(result => { 
        console.log(result) 
    })

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

node app.js

输出:

{
  acknowledged: true,
  modifiedCount: 1,
  upsertedId: null,
  upsertedCount: 0,
  matchedCount: 1
}

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

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



相关用法


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