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


Mongoose Document prototype.getChanges()用法及代碼示例


Mongoose API 的原型.getChanges() 方法可用於查看對集合的文檔對象執行的更改。如果您想查看數據庫中哪些字段和屬性受到影響,可以在修改文檔對象值後使用此方法。

用法:

doc.getChanges()

原型.getChanges()方法不接受任何參數。

返回值: 原型.getChanges()函數返回一個對象,其中包含文檔發生的更改。

設置 Node.js 應用程序:

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

npm init

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

npm install mongoose

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

示例 1:在此示例中,我們使用 mongoose 建立了數據庫連接,並通過 userSchema 定義了模型,具有兩列 “name” 和 “age”。最後,我們使用getChanges()在更新用戶模型的文檔對象上的字段值之前和更新文檔字段值之後兩次方法。在執行時我們會得到空對象getChanges()在更新文檔字段值以及獲取具有已更新的屬性或字段的對象之前。

  • 應用程序.js:在app.js 文件中寫入以下代碼:

Javascript


// Require mongoose module 
const mongoose = require("mongoose"); 
  
// Set Up the Database connection 
mongoose.connect("mongodb://localhost:27017/geeksforgeeks", { 
    useNewUrlParser: true, 
    useUnifiedTopology: true, 
}); 
  
const userSchema = new mongoose.Schema({ 
    name: String, 
    age: Number, 
}); 
  
// Defining userSchema model 
const User = mongoose.model("User", userSchema); 
  
// Creating new document 
User.create({ name: "User4", age: 40 }).then(doc => { 
  
    // Accessing getChanges() before modifying fields 
    const getChanges1 = doc.getChanges() 
    console.log(getChanges1) 
  
    doc.name = "User4 Updated"
  
    // Accessing getChanges() after modifying fields 
    const getChanges2 = doc.getChanges() 
    console.log(getChanges2) 
});

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

node app.js

輸出:

{} // before modification
{ '$set': { name: 'User4 Updated' } } //after modification

示例 2:在這個例子中,我們使用getChanges()更新用戶模型文檔對象上的“name”和“age”字段值後調用一次方法。在這個例子中,我們使用異步函數來實現該函數。

  • 應用程序.js:在app.js 文件中寫入以下代碼:

Javascript


// Require mongoose module 
const mongoose = require("mongoose"); 
  
// Set Up the Database connection 
mongoose.connect("mongodb://localhost:27017/geeksforgeeks", { 
    useNewUrlParser: true, 
    useUnifiedTopology: true, 
}); 
  
const userSchema = new mongoose.Schema({ 
    name: String, 
    age: Number, 
}); 
  
// Defining userSchema model 
const User = mongoose.model("User", userSchema); 
  
// Function in which getChanges() is being called 
const getChangesFunction = async () => { 
  
    const doc = await User.create({ name: "User5", age: 50 }) 
  
    doc.name = "User5 Updated"
    doc.age = 500; 
  
    doc.save(); 
  
    const getChanges = doc.getChanges() 
    console.log(getChanges) 
}; 
  
// Calling the function  
getChangesFunction();

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

node app.js

輸出:

{ '$set': { name: 'User5 Updated', age: 500 } }

參考: https://mongoosejs.com/docs/api/document.html#document_Document-getChanges



相關用法


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