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


Mongoose updateOne()用法及代碼示例


updateOne()函數用於更新符合條件的第一個文檔。此函數與update()相同,但不支持多重或覆蓋選項。

Mongoose 模塊的安裝:

  1. 您可以訪問“安裝 Mongoose ”模塊的鏈接。您可以使用此命令安裝此軟件包。
    npm install mongoose
  2. 安裝 Mongoose 模塊後,您可以使用命令在命令提示符下檢查您的 Mongoose 版本。
    npm version mongoose
  3. 之後,您可以僅創建一個文件夾並添加一個文件,例如index.js。要運行此文件,您需要運行以下命令。
    node index.js

文件名:index.js

const mongoose = require('mongoose'); 
  
// Database connection 
mongoose.connect('mongodb://127.0.0.1:27017/geeksforgeeks', { 
    useNewUrlParser:true, 
    useCreateIndex:true, 
    useUnifiedTopology:true, 
    useFindAndModify:false
}); 
  
// User model 
const User = mongoose.model('User', { 
    name:{ type:String }, 
    age:{ type:Number } 
}); 
  
// Find all documents matching the condition 
// (age >= 5) and update first document 
// This function has 4 parameters i.e.  
// filter, update, options, callback 
User.updateOne({age:{$gte:5}},  
    {name:"ABCD"}, function (err, docs) { 
    if (err){ 
        console.log(err) 
    } 
    else{ 
        console.log("Updated Docs:", docs); 
    } 
});

運行程序的步驟:

  1. 項目結構將如下所示:
    project structure
  2. 確保使用以下命令安裝了mongoose模塊:
    npm install mongoose
  3. 下麵是執行該函數之前數據庫中的示例數據,您可以使用任何GUI工具或終端來查看數據庫,就像我們使用Robo3T GUI工具一樣,如下所示:
    Database
  4. 使用以下命令運行index.js文件:
    node index.js

  5. 執行該函數後,可以看到如下數據庫:
    new Database

因此,這就是使用 Mongoose updateOne()函數的方法,該函數用於更新符合條件的第一個文檔。此函數與update()相同,但不支持多重或覆蓋選項。

相關用法


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