I am passing a uploaded file through formdata from client to server, and the request by the server received has empty body. Here is the code, can someone please help?
Client side code -
Server side code -
OUTPUT -
browser console -
nodejs console -
CodePudding user response:
You need to use a middleware like multer to parse form-data
CodePudding user response:
Your content-type will be
multipart/form-data
Not an application/json
Try to make something like this: https://programmingwithmosh.com/javascript/react-file-upload-proper-server-side-nodejs-easy/