#How to get NextResponse body when using fetch api

18 messages · Page 1 of 1 (latest)

charred doveBOT
#

🔎 This post has been indexed in our web forum and will be seen by search engines so other users can find it outside Discord

🕵️ Your user profile is private by default and won't be visible to users outside Discord, if you want to be visible in the web forum you can add the "Public Profile" role in id:customize

✅ You can mark a message as the answer for your post with Right click -> Apps -> Mark Solution
(if you don't see the option, try refreshing Discord with Ctrl + R)

dusk stag
#

@open sky

#

show full code

#

btw

#

in the route

#

you return a response

#
return NextResponse.json({message: "nothing happened", status: 204});
#

then in your component you await for it

#
const result = await res.json();
#

result.message will return "nothing happened"

#

it told you

#

that some data is not a valid json

#

because you're awaiting for a json

#

you telling it that it will receive a json

#

its like you expect me to talk to you in english but then my next message will be in italian

#

i'd change all your responses

#

in return NextResponse.json({message: "message you want to pass", status: 200});