我想访问多个不同类型的正文参数以在我的 API 的 POST 路由中使用,但我不知道如何在 Javalin 中访问正文参数。我没有在文档中找到有关 Javalin 中的正文参数或最佳 POST 实践的任何信息。我能找到的最接近的是:
ctx.body() // get body as string (consumes underlying request body if not cached)
ctx.bodyAsBytes() // get body as bytes (consumes underlying request body if not cached)
ctx.bodyAsClass(class) // get body as class (consumes underlying request body if not cached)
ctx.bodyValidator(class) // get typed validator for body (consumes underlying body request if not cached)
有人可以指出我正确的方向吗?Javalin 甚至支持正文参数吗?