,可以使用MongoDB的deleteMany()方法来实现。deleteMany()方法可以删除满足指定条件的所有文档。
具体步骤如下:
以下是一个示例代码:
// 引入MongoDB模块
const MongoClient = require('mongodb').MongoClient;
// 连接到MongoDB数据库
const url = 'mongodb://localhost:27017';
const dbName = 'mydb';
MongoClient.connect(url, function(err, client) {
if (err) throw err;
// 选择要操作的集合
const db = client.db(dbName);
const collection = db.collection('mycollection');
// 删除文档,并保留两个条件
const query = {
$and: [
{ condition1: value1 },
{ condition2: value2 }
]
};
collection.deleteMany(query, function(err, result) {
if (err) throw err;
console.log(result.deletedCount + ' documents deleted');
client.close();
});
});
在上述代码中,需要将url
和dbName
替换为实际的MongoDB连接信息和数据库名称。同时,将mycollection
替换为实际的集合名称。在query
对象中,将condition1
和condition2
替换为实际的条件字段名,将value1
和value2
替换为实际的条件值。
这样,就可以从MongoDB集合中删除满足两个条件的文档了。
腾讯云相关产品推荐:
领取专属 10元无门槛券
手把手带您无忧上云