Node携手MongoDB探险旅行⛏️
// 引入MongoDB客户端
const MongoClient = require('mongodb').MongoClient;
// 定义MongoDB连接URL
const url = 'mongodb://localhost:27017';
// 使用Node.js代码连接到MongoDB数据库
MongoClient.connect(url, { useUnifiedTopology: true }, (err, client) => {
if (err) throw err;
console.log('连接成功');
// 引用数据库和集合
const db = client.db('testdb');
const collection = db.collection('testcollection');
// 插入文档
collection.insertOne({ name: 'Node.js with MongoDB', description: 'A fun and easy journey' }, (err, result) => {
if (err) throw err;
console.log('文档插入成功');
console.log(result);
// 关闭连接
client.close();
});
});
这段代码展示了如何使用Node.js和MongoDB客户端库连接到MongoDB数据库,并在成功连接后执行一个插入操作。代码简洁,注重于核心功能的实现,并提供了错误处理。
评论已关闭