如何使用 node.js 删除 MongoDB 中的单个和多个文档?
MongoDB是最流行的 NoSQL 数据库,它是一个开源的面向文档的数据库。术语“NoSQL”的意思是“非关系的”。这意味着 MongoDB 不是基于类似表的关系数据库结构,而是提供了一种完全不同的数据存储和检索机制。这种存储格式称为 BSON(类似于 JSON 格式)。参考这篇文章。
mongodb 模块: Node.js 的这个模块用于连接 MongoDB 数据库以及用于操作 MongoDB 中的集合和数据库。 mongodb.connect() 方法用于连接运行在您机器上特定服务器上的 MongoDb 数据库。 (参考这篇文章)。我们还可以在此方法中使用 Promise 来解析对象包含集合操作所需的所有方法和属性,并拒绝连接期间发生的错误。
安装模块:
node install mongodb
项目结构:
在本地 IP 上运行服务器:
mongod --dbpath=data --bind_ip 127.0.0.1
MongoDB数据库:
Database:GFG
Collection:GFGcollections
GFG数据库的结构:
Javascript
const MongoClient = require("mongodb");
// Server running
const url = 'mongodb://localhost:27017/';
// Database name
const databasename = "GFG";
MongoClient.connect(url).then((client) => {
// Connecting to the database
const connect = client.db(databasename);
// Database collection
const collection = connect
.collection("GFGcollections");
// Delete single document
collection.deleteOne({ "name": "aayush" });
// Delete multiple documents having name GFG
collection.deleteMany({ "class": "GFG" });
console.log("Deletion Successful");
}).catch((err) => {
// If error occured show the error message
console.log(err.Message);
})
输出:
MongoDB数据库: