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


Mongoose Query.prototype.setUpdate()用法及代码示例


Mongoose API 的 Mongoose Query API.prototype.setUpdate() 方法用于查询对象。它允许我们使用新值和表达式设置当前更新操作。使用此方法我们可以修改更新查询表达式。让我们通过一个例子来理解setUpdate()方法。

用法:

query.setUpdate( object );

Parameters: 该方法接受单个参数,如下所述:

  • object:用于以对象的形式指定更新查询表达式。

返回值:此方法返回未定义或不返回任何内容。

设置 Node.js 应用程序:

步骤 1:使用以下命令创建 Node.js 应用程序:

npm init

步骤 2:创建 NodeJS 应用程序后,使用以下命令安装所需的模块:

npm install mongoose

项目结构: 项目结构将如下所示:

数据库结构:数据库结构如下所示,集合中存在以下文档。

示例 1:在此示例中,我们将说明以下函数setUpdate()方法。我们正在更新订单号集合中文档之一的字段。使用setUpdate()方法我们正在更改查询表达式并更新值。

文件名: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.find({ name: "Bhavesh" }); 
query.update({}, { $set: { orderNumber: 6 } }) 
query.setUpdate({ $set: { orderNumber: 0 } }) 
console.log(query.getUpdate()); 
query.exec((error, result) => { 
    if (error) { 
        console.log("Error -", error); 
    } else { 
        console.log("Result -", result); 
    } 
})

运行程序的步骤:要运行应用程序,请从项目的根目录执行以下命令:

node app.js

输出:

{ '$set': { orderNumber: 0 } }
Result - {
  acknowledged: true,
  modifiedCount: 1,
  upsertedId: null,
  upsertedCount: 0,

使用 Robo3T GUI 工具的数据库的 GUI 表示:

示例 2:在此示例中,我们将说明以下函数setUpdate()方法。我们正在更新订单号集合中文档之一的字段。使用setUpdate()方法改变了我们正在更新的字段update()方法。最后,我们只更新一个字段,即订单号。

文件名: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.find({ name: "Aditya" }); 
query.update({}, { $set: { name: "Aaditya" } }) 
query.setUpdate({ $set: { orderNumber: 20 } }) 
console.log(query.getUpdate()); 
query.then((result) => { 
    console.log("Result -", result); 
}).catch((err) => { 
    console.log(err); 
})

运行程序的步骤:要运行应用程序,请从项目的根目录执行以下命令:

node app.js

输出:

{ '$set': { orderNumber: 20 } }

Result - {
  acknowledged: true,
  modifiedCount: 1,  
  upsertedId: null,  
  upsertedCount: 0,  
  matchedCount: 1    
}

使用 Robo3T GUI 工具的数据库的 GUI 表示:

参考:https://mongoosejs.com/docs/api/query.html#query_Query-setUpdate



相关用法


注:本文由纯净天空筛选整理自kartikmukati大神的英文原创作品 Mongoose Query.prototype.setUpdate() API。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。