“Cómo agregar datos JSON a xmlhttprequest” Código de respuesta

Cómo agregar datos JSON a 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

Cómo agregar datos JSON a xmlhttprequest

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

Respuestas similares a “Cómo agregar datos JSON a xmlhttprequest”

Preguntas similares a “Cómo agregar datos JSON a xmlhttprequest”

Más respuestas relacionadas con “Cómo agregar datos JSON a xmlhttprequest” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código