Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have an Next.js API endpoint I'm calling to insert a document into a Mongo collection.

The insertion works fine, but when I hit the api, it returns a 500 error even though it's inserted successfully. My question is; has any else encountered this using Next.js and MongoDB and whats the best way to debug it? Assuming it could be on the Next.js side or Mongo's?

My code looks like;

 import { connectToDatabase } from "../../util/mongodb";

export default async () => {
    try {
    const { db } = await connectToDatabase();
    const answers = await db
      .collection("answers")
      const doc = { name: "Test", town: "Test" };
      const result = await answers.insertOne(doc);
      console.log(
      );
    } finally {
      await  db.close();
    }
};
question from:https://stackoverflow.com/questions/65942580/next-500-error-even-on-successful-mongodb-insert

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
561 views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...