“Как добавить данные json в xmlhttprequest” Ответ

Как добавить данные json в 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": "hello@user.com", "response": { "name": "Tester" } }));
bobsfriend

Как добавить данные json в xmlhttprequest

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

Ответы похожие на “Как добавить данные json в xmlhttprequest”

Вопросы похожие на “Как добавить данные json в xmlhttprequest”

Больше похожих ответов на “Как добавить данные json в xmlhttprequest” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования