node.jsexpresspostman

Postman/form-data - Cannot destructure property


Why I keep getting Cannot destructure property 'name' of 'req.body' as it is undefined.?

My index.js already has express.json() but keeps getting the same error

dotenv.config()
app.use(cors())
app.use(express.json())
app.use(express.urlencoded({ extended: true }))
app.use(routes)

enter image description here


Solution

  • None of the middleware that you use can handle multipart/form-data, you need a middleware like multer to provide such support.