Reputation: 61
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 -
Upvotes: 0
Views: 1056
Reputation: 348
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/
Upvotes: 1