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


Mongoose deleteOne()用法及代碼示例


deleteOne()函數用於從集合中刪除符合條件的第一個文檔。它的行為類似於remove()函數,但無論選擇哪個選項,都最多刪除一個文檔。

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
}); 
  
// User model 
const User = mongoose.model('User', { 
    name:{ type:String }, 
    age:{ type:Number } 
}); 
  
// Function call 
// Delete first document that matches 
// the condition i.e age >= 10 
User.deleteOne({ age:{ $gte:10 } }).then(function(){ 
    console.log("Data deleted"); // Success 
}).catch(function(error){ 
    console.log(error); // Failure 
});

運行程序的步驟:

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

    Output of above command

  5. 運行以上命令後,您可以看到數據已從數據庫中刪除。

因此,這就是使用Mongoose deleteOne()函數從MongoDB和Node.js中的集合中刪除符合條件的第一個文檔的方式。

相關用法


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