request.body 尝试将图像发送到服务器 NodeJS 时为空。正文是表单数据类型

request.body is empty when trying to send an image to server NodeJS. The body is form-data type

request.body 尝试将图像发送到服务器 NodeJS 时为空。正文是表单数据类型。我正在使用 koa-bodyparser。我想要简单的只是在控制台上打印 request.body 但始终未定义。感谢您的帮助!

问题解决了!我没有使用 koa-bodyparser,而是使用了以下 body 解析器:

   const bodyparser: any = require('koa-body');
   this.app.use(bodyparser({
            formidable:{
                uploadDir: './uploads',
                keepExtensions: true
            },
            multipart: true,
            strict: false, //allow application.json !
            urlencoded: true
        }));