Answers for "req.body returns undefined"

11

req.body is undefined

var bodyParser = require('body-parser')
var app = express()

// parse application/x-www-form-urlencoded
app.use(bodyParser.urlencoded({ extended: false }))

// parse application/json
app.use(bodyParser.json())
Posted by: Guest on February-21-2020
1

getting empty req.body

If testing the API using POSTMAN, ensure that 'Content-Length' header is active and set to <calculated when request is sent>.
Posted by: Guest on March-21-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language