When you create an instance of FormData you need to append data to the formData object. I have seen your issue on Stack overflow. Use this solution
const data = new FormData() data.append("username", username) // Go ahead and append all your variables
On your Nodejs server, if you're not sending a file along with your form, do not send form data content-type to the server. Use json instead
Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink.
Hide child comments as well
Confirm
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
When you create an instance of FormData you need to append data to the formData object. I have seen your issue on Stack overflow.
Use this solution
On your Nodejs server, if you're not sending a file along with your form, do not send form data content-type to the server. Use json instead