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


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


Mongoose API 的 Mongoose Query API.prototype.w() 方法用於查詢對象。它允許我們設置必須確認寫入操作的指定數量的MongoDB服務器。在寫入事件成功執行之前。將“1”作為參數提供給該方法表示由一台服務器確認,將“majority”作為參數提供給該方法表示由該服務器的多個副本集確認。讓我們通過一個例子來理解w()方法。

我們可以通過以下方法訪問此選項或w()方法:

  • deleteOne()
  • deleteMany()
  • findOneAndDelete()
  • findOneAndReplace()
  • findOneAndUpdate()
  • remove()
  • update()
  • updateOne()
  • updateMany()

用法:

query.deleteOne( ... ).w( val );

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

  • val:用於指定數字或字符串,1表示從1個MongoDB服務器獲取確認,“majority”從大多數副本集獲取確認。

返回值:該方法返回查詢對象。

設置 Node.js 應用程序:

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

npm init

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

npm install mongoose

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

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

示例 1:在此示例中,我們將說明以下函數w()方法通過訪問它updateOne()方法。

文件名:app.js

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 Customer = connectionObject.model( 
    'Customer', new mongoose.Schema({ 
        name: String, 
        address: String, 
        orderNumber: Number, 
    })); 
  
(async () => { 
    const query = Customer.updateOne( 
        { name: "Chintu" }, { orderNumber: 10 } 
    ); 
    query.w(1); 
    query.exec((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 表示:

示例 2:在此示例中,我們將說明以下函數w()方法通過訪問它deleteOne()方法。最後,我們從集合中刪除一份文檔,尋求大多數副本集的確認。

文件名:app.js

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 Customer = connectionObject.model( 
    "Customer", 
    new mongoose.Schema({ 
        name: String, 
        address: String, 
        orderNumber: Number, 
    }) 
); 
  
const query = Customer.deleteOne({ name: "Bhavesh" }); 
query.w("majority"); 
query.then(result => { 
    console.log(result); 
}).catch(error => { 
    console.log(error); 
})

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

node app.js

輸出:

{ acknowledged: true, deletedCount: 1 }

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

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



相關用法


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