Next.js Discord

Discord Forum

Make a POST inside a GET request?

Unanswered
Whiteleg shrimp posted this in #help-forum
Open in Discord
Whiteleg shrimpOP
I want to make a "post" request inside my GET request method. Is this frowned upon? Or okay?

export default function handler(req, res) {
  if (req.method === 'GET') {
    // check db if user is there (db.get())
    // if not run the POST request to add user details. (db.save())
  } 
}

1 Reply