import { HonoRequest } from "https://deno.land/x/hono@v4.1.0/mod.ts";
.json()
can parse Request body of type application/json
Examples
Example 1
Example 1
app.post('/entry', async (c) => {
const body = await c.req.json()
})
import { HonoRequest } from "https://deno.land/x/hono@v4.1.0/mod.ts";
.json()
can parse Request body of type application/json
Example 1
app.post('/entry', async (c) => {
const body = await c.req.json()
})