當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。