Mongoose Document API 模型。Mongoose API 的updateMany() 方法用于文档模型。它允许一次性更新多个文档。使用此方法,我们可以在一次执行中更新与过滤条件匹配的多个文档。让我们通过一个例子来理解updateMany()方法。
用法:
Model.updateMany(filter, update, options, callback);
参数:该方法接受四个参数,如下所述:
- filter:用于指定过滤条件来过滤或识别需要更新的文档。
- update:它用于为我们要更新的字段设置最新和更新的值。
- options: 它用于指定各种属性。
- callback:它用于指定回调函数。
返回值:它返回查询对象。我们可以在其上调用回调函数并处理 Promise。
设置 Node.js 应用程序:
步骤 1:使用以下命令创建 Node.js 应用程序
npm init
步骤2:创建NodeJS应用程序后,使用以下命令安装所需的模块
npm install mongoose
项目结构: 项目结构将如下所示:
数据库结构:数据库结构如下所示,集合中存在以下文档。
示例 1:在此示例中,我们将说明以下函数updatemany()方法。我们正在使用以下方式过滤文档地址字段,我们正在更新订单号r场地。最后,我们使用 then 和 catch 块来处理返回的 Promise。
文件名:app.js
Javascript
// Require mongoose module
const mongoose = require("mongoose");
// Set Up the Database connection
const URI = "mongodb://localhost:27017/geeksforgeeks";
let connectionObject = mongoose.createConnection(URI, {
useNewUrlParser: true,
useUnifiedTopology: true,
});
let Customer = connectionObject.model(
"Customer",
new mongoose.Schema({
name: String,
address: String,
orderNumber: Number,
})
);
Customer.updateMany({ address: "Indore" }, { orderNumber: 9 }).
then(result => {
console.log(result);
}).catch(error => {
console.log(error);
});
运行程序的步骤:要运行应用程序,请从项目的根目录执行以下命令
node app.js
输出:
{ acknowledged: true, modifiedCount: 2, upsertedId: null, upsertedCount: 0, matchedCount: 2 }
使用 Robo3T GUI 工具的数据库的 GUI 表示:
示例 2:在此示例中,我们将说明以下函数updatemany()方法。我们正在使用过滤文档订单号字段,我们正在更新地址场地。最后,我们通过提供回调函数作为第三个参数来处理返回的 PromiseupdateMany() 方法。
文件名:app.js
Javascript
// Require mongoose module
const mongoose = require("mongoose");
// Set Up the Database connection
const URI = "mongodb://localhost:27017/geeksforgeeks";
let connectionObject = mongoose.createConnection(URI, {
useNewUrlParser: true,
useUnifiedTopology: true,
});
let Customer = connectionObject.model(
"Customer",
new mongoose.Schema({
name: String,
address: String,
orderNumber: Number,
})
);
Customer.updateMany({ orderNumber: 9 }, { address: "IND" }
, (err, res) => {
if (err) {
console.log(err);
} else {
console.log(res);
}
});
运行程序的步骤:要运行应用程序,请从项目的根目录执行以下命令:
node app.js
输出:
{ acknowledged: true, modifiedCount: 0, upsertedId: null, upsertedCount: 0, matchedCount: 2 }
使用 Robo3T GUI 工具的数据库的 GUI 表示:
参考: https://mongoosejs.com/docs/api/model.html#model_Model-updateMany
相关用法
- Mongoose Document Model.updateOne()用法及代码示例
- Mongoose Document Model.create()用法及代码示例
- Mongoose Document Model.deleteOne()用法及代码示例
- Mongoose Document Model.countDocuments()用法及代码示例
- Mongoose Document Model.populate()用法及代码示例
- Mongoose Document Model.replaceOne()用法及代码示例
- Mongoose Document Model.inspect()用法及代码示例
- Mongoose Document Model.prototype.model()用法及代码示例
- Mongoose Document Model.listIndexes()用法及代码示例
- Mongoose Document Model.estimatedDocumentCount()用法及代码示例
- Mongoose Document Model.where()用法及代码示例
- Mongoose Document Model.prototype.deleteOne()用法及代码示例
- Mongoose Document Model.init()用法及代码示例
- Mongoose Document Model.prototype.remove()用法及代码示例
- Mongoose Document Model.remove()用法及代码示例
- Mongoose Document Model.prototype.save()用法及代码示例
- Mongoose Document Model.deleteMany()用法及代码示例
- Mongoose Document Model.exists()用法及代码示例
- Mongoose Document Model.insertMany()用法及代码示例
- Mongoose Document Model.count()用法及代码示例
- Mongoose Document Model.bulkWrite()用法及代码示例
- Mongoose Document prototype.getChanges()用法及代码示例
- Mongoose Document prototype.unmarkModified()用法及代码示例
- Mongoose Document prototype.replaceOne()用法及代码示例
- Mongoose Document prototype.get()用法及代码示例
注:本文由纯净天空筛选整理自kartikmukati大神的英文原创作品 Mongoose Document Model.updateMany() API。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。