如何使用 Node.js 查找 MongoDB 数据库特定键的所有值?
MongoDB 模块: Node.js 的这个模块用于连接 MongoDB 数据库以及用于操作 MongoDB 中的集合和数据库。 mongodb.connect()是用于连接 MongoDB 数据库的主要方法,该数据库在您机器上的特定服务器上运行(请参阅本文)。我们也可以使用promise,在这个方法中解析对象包含集合操作所需的所有方法和属性,并拒绝连接过程中发生的错误。
MongoDB 模块的Project() 方法仅允许在此方法中指定为参数的文档。此方法采用文档的键名和 0 和 1 值。
- 0 表示除此键之外的所有其他键值显示 MongoDB 集合。
- 1 表示仅显示给定的键值。 MongoDB 集合。
安装模块:您可以使用以下命令安装mongodb模块:
node install mongodb
项目结构:项目结构将如下所示。
在本地 IP 上运行服务器:在以下命令中, data是文件夹名称。
mongod --dbpath=data --bind_ip 127.0.0.1
MongoDB 数据库:我们的数据库名称和集合如下所示,其中包含一些虚拟数据。
Database:GFG
Collection:aayush
文件名:index.js
Javascript
// Requiring module
const MongoClient = require("mongodb");
// Connection URL
const url = 'mongodb://localhost:27017/';
// Database name
const databasename = "GFG";
MongoClient.connect(url).then((client) => {
const connect = client.db(databasename);
// Connect to collection
const collection = connect.collection("aayush");
// Fetching the records of name key
collection.find({ }).project({name:1})
.toArray().then((values) => {
// Printing the values
console.log(ans);
});
}).catch((err) => {
// Printing the error message
console.log(err.Message);
})
使用以下命令运行index.js文件:
node index.js
输出: