|
@@ -2,6 +2,7 @@
|
|
|
import mongoose from "mongoose";
|
|
|
|
|
|
const MONGODB_URI = process.env.MONGODB_URI;
|
|
|
+const DB_NAME = process.env.MONGODB_DB_NAME || "mydatabase"; // 添加数据库名称
|
|
|
|
|
|
if (!MONGODB_URI) {
|
|
|
throw new Error(
|
|
@@ -23,17 +24,22 @@ async function dbConnect() {
|
|
|
if (!cached.promise) {
|
|
|
const opts = {
|
|
|
bufferCommands: false,
|
|
|
+ dbName: DB_NAME, // 明确指定数据库名称
|
|
|
+ useNewUrlParser: true,
|
|
|
+ useUnifiedTopology: true,
|
|
|
};
|
|
|
|
|
|
cached.promise = mongoose.connect(MONGODB_URI, opts).then((mongoose) => {
|
|
|
- console.log("Connected to MongoDB");
|
|
|
+ console.log(`Connected to MongoDB database: ${DB_NAME}`);
|
|
|
return mongoose;
|
|
|
});
|
|
|
}
|
|
|
+
|
|
|
try {
|
|
|
cached.conn = await cached.promise;
|
|
|
} catch (e) {
|
|
|
cached.promise = null;
|
|
|
+ console.error("Failed to connect to MongoDB:", e);
|
|
|
throw e;
|
|
|
}
|
|
|
|
|
@@ -41,30 +47,3 @@ async function dbConnect() {
|
|
|
}
|
|
|
|
|
|
export default dbConnect;
|
|
|
-
|
|
|
-// import { MongoClient } from "mongodb";
|
|
|
-
|
|
|
-// const MONGODB_URI = process.env.MONGODB_URI;
|
|
|
-// let cachedClient = null;
|
|
|
-
|
|
|
-// export default async function dbConnect() {
|
|
|
-// if (cachedClient) {
|
|
|
-// return cachedClient;
|
|
|
-// }
|
|
|
-
|
|
|
-// if (!MONGODB_URI) {
|
|
|
-// throw new Error(
|
|
|
-// "Please define the MONGODB_URI environment variable inside .env.local"
|
|
|
-// );
|
|
|
-// }
|
|
|
-
|
|
|
-// const client = new MongoClient(MONGODB_URI, {
|
|
|
-// useNewUrlParser: true,
|
|
|
-// useUnifiedTopology: true,
|
|
|
-// });
|
|
|
-
|
|
|
-// await client.connect();
|
|
|
-// cachedClient = client;
|
|
|
-
|
|
|
-// return client;
|
|
|
-// }
|