Clone and modify XmlHttpRequest

1.9k Views Asked by At

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

2

There are 2 best solutions below

0
On

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.

1
On

in if (typeof token !== 'undefined') !== is not useful because typeof always returns a string, so use !=