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


Mongoose Query.prototype.updateOne()用法及代碼示例


Mongoose API 的 Mongoose Query API.prototype.updateOne() 方法用於查詢對象。它允許我們更新集合中的文檔。 MongoDB 更新與過濾器匹配的第一個文檔,無論 multi-option 值如何。讓我們通過一個例子來理解updateOne()方法。

用法:

Model.updateOne( filter, update, options, callback );

Parameters: 該方法接受四個參數,如下所述:

  • filter: 它用於指定過濾條件。它以物體的形式存在。
  • update: 用於指定更新對象。
  • options: 它用於以對象的形式指定各種屬性。
  • callback: 它用於指定回調函數。

返回值:此方法返回查詢對象並使用最新值更新文檔。

設置 Node.js Mongoose 模塊:

步驟 1:使用以下命令創建 Node.js 應用程序:

npm init

步驟 2:創建 NodeJS 應用程序後,使用以下命令安裝所需的模塊:

npm install mongoose

項目結構: 項目結構將如下所示:

數據庫結構:數據庫結構如下所示,集合中存在以下文檔。

示例 1:下麵的示例說明了 Mongoose Query 的基本函數updateOne()方法,使用 then 和 catch 塊。

Javascript


// Require mongoose module 
const mongoose = require("mongoose"); 
  
// Set Up the Database connection 
const URI = "mongodb://localhost:27017/geeksforgeeks"
  
const connectionObject = mongoose.createConnection(URI, { 
    useNewUrlParser: true, 
    useUnifiedTopology: true, 
}); 
  
const studentSchema = new mongoose.Schema({ 
    name: { type: String }, 
    age: { type: Number }, 
    rollNumber: { type: Number }, 
}); 
  
const Student = connectionObject.model('Student', studentSchema); 
  
Student.updateOne( 
    { name: 'Student3' }, { age: 33 } 
).then(result => { 
    console.log(result); 
})

運行程序的步驟:要運行應用程序,請從項目的根目錄執行以下命令:

node app.js

輸出:

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

使用 Robo3T GUI 工具的數據庫的 GUI 表示:

示例 2:下麵的示例說明了 Mongoose Query 的基本函數updateOne()方法,使用異步函數和回調 Promise 處理函數。

Javascript


// Require mongoose module 
const mongoose = require("mongoose"); 
  
// Set Up the Database connection 
const URI = "mongodb://localhost:27017/geeksforgeeks"
  
const connectionObject = mongoose.createConnection(URI, { 
    useNewUrlParser: true, 
    useUnifiedTopology: true, 
}); 
  
const studentSchema = new mongoose.Schema({ 
    name: { type: String }, 
    age: { type: Number }, 
    rollNumber: { type: Number }, 
}); 
  
const Student =  
    connectionObject.model('Student', studentSchema); 
  
(async () => { 
    Student.updateOne( 
        { rollNumber: 176 }, { name: 'S2' },  
        (error, result) => { 
            if (error) { 
                console.log('Error', error); 
            } else { 
                console.log('Result', result); 
            } 
        }) 
})();

運行程序的步驟:要運行應用程序,請從項目的根目錄執行以下命令:

node app.js

輸出:

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

使用 Robo3T GUI 工具的數據庫的 GUI 表示:

參考:https://mongoosejs.com/docs/api/query.html#query_Query-updateOne



相關用法


注:本文由純淨天空篩選整理自sakshio0hoj大神的英文原創作品 Mongoose Query.prototype.updateOne() API。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。