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 回答1: 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