当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。