requestImpl(name, data): {
var json = JSON.stringify(data) // перевод данных в строку
var xhr = new XMLHttpRequest() // запрос
// Формируем POST запрос
xhr.open("POST", this.baseUrl + name, true)
xhr.setRequestHeader('Content-type', 'application/json; charset=utf-8');
xhr.addEventListener('load', function(event) { log("Loading is done") })
xhr.addEventListener('error', function(event) { log("Failed to send data", event) })
xhr.send(json);
}
if (file_get_contents("php://input")){...}