I checked this question but for some reasons the solution given is not working for me. In my express.js I have:
...
bodyParser = require('body-parser')
app.use(bodyParser.urlencoded({
   extended: true
}));
app.use(bodyParser.json());
...
Run test using POSTman

app.post('/upload', function(req, res) {
   console.log(req.body) // undefined
   console.log(req.params) // undefined
})
and the result:

So both body & params are empty. Any suggestions?
 
     
    