TypeError: ‘append’ called on an object that does not implement interface FormData.
$.ajax({
url: form.attr('action'),
type: 'POST',
dataTyte: 'json',
data: form_data,
enctype: 'multipart/form-data',
success : function(response) {
console.log("Uploaded");
}
});
I m getting the below error while executting the ajax call with FormData in above code.
TypeError: ‘append’ called on an object that does not implement interface FormData.