Jump to content

[SOLVED] Single Instance Multiple Request


xenophobia

Recommended Posts

I had a single instance of XHR object.

 

Everytime I clicked a button, this XHR object will send the request to server to get some info.

 

What I want is, whenever I clicked, if there is some unfinished transaction in the previous one will be aborted and start with the new one. How am I going to do that?

 

Better picture:

// Get the xmlHttpRequest object.
var xhr = init_object();

if(isLoading) {
   xhr.abort();
}

xhr.open('new.php', ...blar blar...);
xhr.send(null);

Link to comment
Share on other sites

Maybe I should ask in this way:

 

Say currently, request A is made to server.

While it is loading, a user click on another button, request B is made.

 

So I want to abort the request A and made a new request to server (request B).

 

How do I do that??

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.