I can't get req.body when enctype is multipart/form-data, but I get req.body when enctype is application/x-www-form-urlencoded.
main configuration of my server is 
app.use(bodyParser.urlencoded({ extended: true }));
app.use(bodyParser.json());
I want to get req.body when enctype of form is multipart/form-data.
How to do it?
 
    