How can I make more than on XHR call using on Request instance? This is what I did:
var req = new Request({
method: 'get',
url: '/foo'
});
req.send();
req.send();
But in this case req is only being called once, not twice. I can
understand making request call twice does not make sense, but I'm
wondering if there is a way that I make two exact same calls? The
second call reference something from the first call?
Thank you!
