Node & MongoDB - 连接数据库


Node mongodb 提供了mongoClient对象,用于使用 connect() 方法连接数据库连接。该函数接受多个参数并提供 db 对象来执行数据库操作。

句法

// MongoDBClient
const client = new MongoClient(url, { useUnifiedTopology: true });
// make a connection to the database
client.connect();

您可以随时使用另一个连接对象函数close()断开与 MongoDB 数据库的连接。

句法

client.close()

例子

尝试以下示例连接到 MongoDB 服务器 -

将以下示例复制并粘贴为 mongodb_example.js -

const MongoClient = require('mongodb').MongoClient;
// Prepare URL
const url = "mongodb://localhost:27017/";
// make a connection to the database
MongoClient.connect(url, function(error, client) {
   if (error) throw error;
   console.log("Connected!");
   // close the connection
   client.close();
});

输出

使用 Node 执行 mysql_example.js 脚本并验证输出。

node mongodb_example.js
Connected!