How can I can convert my JS Object to FormData?
FormData
The reason why I want to do this is, I have an object that I constructed out of the ~100 form field valu
Try JSON.stringify function as below
var postData = JSON.stringify(item); var formData = new FormData(); formData.append("postData",postData );