“Como adicionar dados JSON ao xmlHttPrequest” Respostas de código

Como adicionar dados JSON ao xmlHttPrequest

var xmlhttp = new XMLHttpRequest();   // new HttpRequest instance 
var theUrl = "/json-handler";
xmlhttp.open("POST", theUrl);
xmlhttp.setRequestHeader("Content-Type", "application/json;charset=UTF-8");
xmlhttp.send(JSON.stringify({ "email": "[email protected]", "response": { "name": "Tester" } }));
bobsfriend

Como adicionar dados JSON ao xmlHttPrequest

Failed to load resource: the server responded with a status of 500 (Internal Server Error)
Precious Peafowl

Respostas semelhantes a “Como adicionar dados JSON ao xmlHttPrequest”

Perguntas semelhantes a “Como adicionar dados JSON ao xmlHttPrequest”

Mais respostas relacionadas para “Como adicionar dados JSON ao xmlHttPrequest” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código