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

Categories

0 votes
589 views
in Technique[技术] by (71.8m points)

next.js - Next 500 error even on successful mongodb insert

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

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

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...