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
https://forums.phpfreaks.com/topic/167285-solved-single-instance-multiple-request/
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??

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.