如何使用koa2上传文件?

时间:2017-11-08 03:20:38

标签: multipartform-data koa2

我在我的koa项目中发布了formData。当我打印ctx.request

时,我得到了以下内容
'content-type': 'multipart/form-data; boundary=----WebKitFormBoundary5AThNwq75QDUwSIA','content-length': '517840'

然而,为什么我得到{}'当我打印ctx.request.body

1 个答案:

答案 0 :(得分:0)

您需要使用一些中间件,例如koa-body(但有很多替代方案)。

请参阅the example in official repository