This maybe be seems like a total misunderstanding of a javascript way, but nevertheless here is an interest question: how to copy a XmlHttpRequest and make copy's send function include custom headers in a way that it will leave original XmlHttpRequest untouched.
Here is my (unsuccessful) attempt:
Ajax.prototype._newReq = function() {
var request = Object.create(XMLHttpRequest.prototype),
token = this.token;
request._send = request.send;
request.send = function(data) {
request.setRequestHeader("Content-Type", "application/json;charset=UTF-8");
if (typeof token !== 'undefined') {
request.setRequestHeader("X-AUTH-TOKEN", token);
}
this._send(data)
}
return request;
}
this code throws TypeError: Illegal invocation
the error was in the request.setRequestHeader("X-AUTH-TOKEN", token); after I changed it to this.setRequestHeader("X-AUTH-TOKEN", token); there were some kind of weird error and I did Kevin suggested.