简体   繁体   中英

req.body is empty in Node

React (Client) sent post data through axios. but req.body is empty in Node server side. Tried to use body-parser. but failed. attached client side here

attached server code here

This is client Axios part

It should be the Content-Type on the request.

Per default the body-parser "urlencoded" handles only the following:

Content-Type: application/x-www-form-urlencoded;

You can set the type so:

app.use(bodyParser.urlencoded({
  extended: true,
  type: 'multipart/form-data'
}))

But then you have to parse the "raw body" by yourself, because the body-parser doesn't support multipart.

The body-parser doesn't support decoding multipart/form-data. There are ample of libraries available for parsing multipart-form/data.

I know the formidable library to be working and using it is as simple as this:

var form = new formidable.IncomingForm();

form.parse(req, function(err, fields, files) {

    console.log(`fields: ${fields} /n files: ${files}`)

});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM