- Node.js教程
- Node.js - 教程
- Node.js - 简介
- Node.js - 环境设置
- Node.js - 首次申请
- Node.js - REPL 终端
- Node.js - 命令行选项
- Node.js - 包管理器 (NPM)
- Node.js - 回调概念
- Node.js - 上传文件
- Node.js - 发送电子邮件
- Node.js - 活动
- Node.js - 事件循环
- Node.js - 事件发射器
- Node.js - 调试器
- Node.js - 全局对象
- Node.js - 控制台
- Node.js - 流程
- Node.js - 扩展应用程序
- Node.js - 包装
- Node.js - Express 框架
- Node.js - RESTful API
- Node.js - 缓冲器
- Node.js - Streams
- Node.js - 文件系统
- Node.js MySQL
- Node.js - MySQL 快速入门
- Node.js - MySQL创建数据库
- Node.js - MySQL创建表
- Node.js - MySQL Insert Into
- Node.js - MySQL Select From
- Node.js - MySQL Where 子句
- Node.js - MySQL Order By
- Node.js - MySQL Delete
- Node.js - MySQL Update
- Node.js - MySQL Join
- Node.js MongoDB
- Node.js - MongoDB 快速入门
- Node.js - MongoDB 创建数据库
- Node.js - MongoDB 创建集合
- Node.js - MongoDB Insert
- Node.js - MongoDB Find
- Node.js - MongoDB 查询
- Node.js - MongoDB 排序
- Node.js - MongoDB Delete
- Node.js - MongoDB Update
- Node.js - MongoDB Limit
- Node.js - MongoDB Join
- Node.js模块
- Node.js - 模块
- Node.js - 内置模块
- Node.js - utility 模块
- Node.js - Web 模块
Node.js - MongoDB Delete
Node.js 的 mongodb 驱动程序在 Collection 类中包含两个方法。deleteOne() 方法删除一个文档,而 deleteMany() 方法用于一次删除多个文档。这两种方法都需要一个过滤器参数。
collection.deleteOne(filter);
请注意,如果有多个文档满足给定的筛选条件,则只会删除第一个文档。
deleteOne()
在以下示例中。deleteOne() 方法从产品集合中删除一个文档,其名称字段与 TV 匹配。
const {MongoClient} = require('mongodb');
async function main(){
const uri = "mongodb://localhost:27017/";
const client = new MongoClient(uri);
try {
await client.connect();
await deldocs(client, "mydb", "products");
} finally {
await client.close();
}
}
main().catch(console.error);
async function deldocs(client, dbname, colname){
var myqry = { Name: "TV" };
const result = await client.db(dbname).collection(colname).deleteOne(myqry);
console.log("Document Deleted");
}
使用 MongoCompass(或 MongoShell)验证在执行上述代码后是否已删除预期的文档。
deleteMany()
deleteMany() 方法也使用 filter 参数。但是,它会导致所有满足指定条件的文档都将被删除。
在上面的代码中,更改 deldocs() 函数,如下所示。它会导致价格为 >10000 的所有文档都被删除。
async function deldocs(client, dbname, colname){
var myqry = {"price":{$gt:10000}};
const result = await client.db(dbname).collection(colname).deleteMany(myqry);
console.log("Documents Deleted");
}
drop()
您可以使用 drop() 方法从数据库中删除集合。
例
const {MongoClient} = require('mongodb');
async function main(){
const uri = "mongodb://localhost:27017/";
const client = new MongoClient(uri);
try {
await client.connect();
await dropcol(client, "mydb", "products");
} finally {
await client.close();
}
}
main().catch(console.error);
async function dropcol(client, dbname, colname){
const result = await client.db(dbname).collection(colname).drop();
console.log("Collection dropped ");
}
还有一个 dropCollection() 方法可用于 db 对象。
const {MongoClient} = require('mongodb');
async function main(){
const uri = "mongodb://localhost:27017/";
const client = new MongoClient(uri);
try {
await client.connect();
await dropcol(client, "mydb", "orders");
} finally {
await client.close();
}
}
main().catch(console.error);
async function dropcol(client, dbname, colname){
const result = await client.db(dbname).dropCollection(colname);
console.log("Collection dropped");
}