Не могу понять причину.
Отправляю через POST
App.prototype.sending = function (data, url) {
var param = "data=" + data,
xhr = new window.XMLHttpRequest();
xhr.open("POST", url, true);
xhr.setRequestHeader("Content-Type", "application/json");
xhr.onreadystatechange = function () {
if (xhr.readyState === 4 && xhr.status === 200) {
alert(xhr.responseText);
}
};
xhr.send(param);
};