D
Deno
Change Theme
Search Answer Overflow
Login
veodium
Posts
Comments
D
Deno
•
Created by Inke on 2/18/2025 in
#help
how do I access post data in a deno http server?
and more and more googling 🙂
14 replies
D
Deno
•
Created by Inke on 2/18/2025 in
#help
how do I access post data in a deno http server?
read examples in the official document
14 replies
D
Deno
•
Created by Inke on 2/18/2025 in
#help
how do I access post data in a deno http server?
try this
14 replies
D
Deno
•
Created by Inke on 2/18/2025 in
#help
how do I access post data in a deno http server?
if ("POST" === method) { const body = JSON.parse(await req.text()); console.log(body); return new Response("Hello, where's my data?", { status: 200 }) }
14 replies