“Como converter formdata (objeto html5) em json” Respostas de código

FormData para JSON

var object = {};
formData.forEach(function(value, key){
    object[key] = value;
});
var json = JSON.stringify(object);

// Or ES6 arrow function
var object = {};
formData.forEach((value, key) => object[key] = value);
var json = JSON.stringify(object);
yusuf_fazeri

Como converter formdata (objeto html5) em json

var object = {};
formData.forEach(function(value, key){
    object[key] = value;
});
var json = JSON.stringify(object);
Bug Killer

Respostas semelhantes a “Como converter formdata (objeto html5) em json”

Perguntas semelhantes a “Como converter formdata (objeto html5) em json”

Mais respostas relacionadas para “Como converter formdata (objeto html5) em json” em CSS

Procure respostas de código populares por idioma

Procurar outros idiomas de código