тоже самое, через GET - работает:
App.prototype.sending = function (data) {
var param = "?data=" + data,
xhr = new window.XMLHttpRequest();
xhr.open("GET", this.url + param, true);
xhr.setRequestHeader("Content-Type", "application/json");
xhr.onreadystatechange = function () {
if (xhr.readyState === 4 && xhr.status === 200) {
alert(xhr.responseText);
}
};
xhr.send(null);
};