gpt4 book ai didi

node.js - 如何在没有 Mongoose 的情况下使用 express 连接到 mongodb?

转载 作者:IT老高 更新时间:2023-10-28 13:26:06 27 4
gpt4 key购买 nike

我正在使用 express 框架,并且想在不使用 mongoose 的情况下连接到 mongodb,但使用 native nodejs Mongodb 驱动程序。在不每次都创建新连接的情况下如何做到这一点?

为了处理 get 或 post 请求,我目前为每个请求打开一个到数据库的新连接,并在请求完成时关闭它。有一个更好的方法吗?提前致谢。

最佳答案

按照我评论中的示例,对其进行修改,以便应用处理错误而不是无法启动服务器。

var express = require('express');
var mongodb = require('mongodb');
var app = express();

var MongoClient = require('mongodb').MongoClient;
var dbURL = "mongodb://localhost:27017/integration_test";
var db;

// Initialize connection once
MongoClient.connect(dbURL, function(err, database) {
if(err) return console.error(err);

db = database;

// the Mongo driver recommends starting the server here
// because most apps *should* fail to start if they have no DB.
// If yours is the exception, move the server startup elsewhere.
});

// Reuse database object in request handlers
app.get("/", function(req, res, next) {
var collection = "replicaset_mongo_client_collection";
db.collection(collection).find({}, function(err, docs) {
if(err) return next(err);
docs.each(function(err, doc) {
if(doc) {
console.log(doc);
}
else {
res.end();
}
});
});
});

app.use(function(err, req, res){
// handle error here. For example, logging and
// returning a friendly error page
});

// Starting the app here will work, but some users
// will get errors if the db connection process is slow.
app.listen(3000);
console.log("Listening on port 3000");

关于node.js - 如何在没有 Mongoose 的情况下使用 express 连接到 mongodb?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36374842/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com