Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图了解在 POST 方法中访问文件数据的预期方式。
在 ExpressJS 中,通常可以通过req以下方式访问数据:req.files
req
req.files
但是req.files在 Nuxt3 服务器端点中未定义。我是否需要使用服务器中间件将文件包含到请求中?或者还有其他方法可以实现吗?
编辑1:
我能够使用打印我们的身体const body = await useBody(req);
const body = await useBody(req);
但是,现在我正在努力弄清楚如何正确解析它。
您可以解构收到的物品:
import { useBody } from 'h3' const body = await useBody(req); const { files } = body;