Answers for "js show formdata"

4

how to console.log formData

// Display the values
for (var value of formData.values()) {
   console.log(value); 
}
Posted by: Guest on July-09-2020
3

console log formdata

// Display the key/value pairs
for (var pair of formData.entries()) {
    console.log(pair[0]+ ', ' + pair[1]); 
}
Posted by: Guest on September-29-2020
6

formdata js

var form = $('form')[0]; // You need to use standard javascript object here
var formData = new FormData(form);

or specify exact data for FormData();

var formData = new FormData();
formData.append('section', 'general');
formData.append('action', 'previewImg');
// Attach file
formData.append('image', $('input[type=file]')[0].files[0]); 

Sending form

Ajax request with jquery will looks like this:

$.ajax({
    url: 'Your url here',
    data: formData,
    type: 'POST',
    contentType: false, // NEEDED, DON'T OMIT THIS (requires jQuery 1.6+)
    processData: false, // NEEDED, DON'T OMIT THIS
    // ... Other options like success and etc
});
After this it will send ajax request like you submit regular form
with enctype="multipart/form-data"

Update: This request cannot work without type:"POST" in options since all
files must be sent via POST request.
Posted by: Guest on July-02-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language