在 MongoDB 中,可以使用 updateMany() 方法來批量更新數據。下面是一個示例:
假設有一個名為 users 的集合,其中包含了多個文檔。要批量更新這些文檔,可以使用以下代碼:
// 連接數據庫
const MongoClient = require('mongodb').MongoClient;
const url = 'mongodb://localhost:27017';
const dbName = 'mydatabase';
MongoClient.connect(url, function(err, client) {
if (err) throw err;
const db = client.db(dbName);
const collection = db.collection('users');
// 要更新的條件
const query = { status: 'active' };
// 更新的字段
const updateValues = { $set: { status: 'inactive' } };
collection.updateMany(query, updateValues, function(err, result) {
if (err) throw err;
console.log(result.result.nModified + ' documents updated');
client.close();
});
});
在上面的示例中,我們首先連接到數據庫,并指定要更新的集合為 users。然后,我們定義了一個查詢條件,該條件將匹配 status 為 ‘active’ 的文檔。接著,我們定義了要更新的字段,將 status 更新為 ‘inactive’。最后,我們調用 updateMany() 方法來批量更新匹配條件的文檔。
在 updateMany() 方法的回調函數中,我們可以獲取更新成功的文檔數量,并對其進行處理。
希望這個示例能夠幫助你實現 MongoDB 的批量更新數據操作。