Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've an ajax request which will happen in every 5 seconds. But the problem is before the ajax request if the previous request is not completed I've to abort that request and make a new request.

My code is something like this, how to resolve this issue?

$(document).ready(
    var fn = function(){
        $.ajax({
            url: 'ajax/progress.ftl',
            success: function(data) {
                //do something
            }
        });
    };

    var interval = setInterval(fn, 500);
);
share|improve this question
5  
possible duplicate of Kill ajax requests using javascript using jquery. – karim79 Dec 29 '10 at 3:06

3 Answers

up vote 67 down vote accepted

The jquery ajax method returns a XMLHttpRequest object. You can use this object to cancel the request.

The XMLHttpRequest has a abort method, which cancels the request.
Note: If the request has already been sent to the server then the server will process the request even if we abort the request but the client will not wait for/handle the response.

The xhr object also contains a readystate which contains the state of the request(UNSENT-0, OPENED-1, HEADERS_RECEIVED-2, LOADING-3 and DONE-4). we can use this to check whether the previous request was completed.

$(document).ready(
    var xhr;

    var fn = function(){
        if(xhr && xhr.readystate != 4){
            xhr.abort();
        }
        xhr = $.ajax({
            url: 'ajax/progress.ftl',
            success: function(data) {
                //do something
            }
        });
    };

    var interval = setInterval(fn, 500);
);

JQUERY 1.5 UPDATE

Since jQuery 1.5 the $.ajax function now returns a jqXHR object. It still provides many of the old XMLHttpRequest properties for backwards compatibility but seems to capitalise the readystate property which breaks compatibility! Anyway the code above needs to be changed to use readyState for it to continue functioning:

$(document).ready(
    var xhr;

    var fn = function(){
        if(xhr && xhr.readyState != 4){
            xhr.abort();
        }
        xhr = $.ajax({
            url: 'ajax/progress.ftl',
            success: function(data) {
                //do something
            }
        });
    };

    var interval = setInterval(fn, 500);
);
share|improve this answer
5  
I don't see any difference between the code above and the code below... – romkyns Sep 14 '11 at 10:23
1  
@rtpHarry Thanks for the update wrt jQuery 1.5 – Arun P Johny Sep 14 '11 at 10:53
15  
@romkyns The differences is the property readystate above and readyState below, the character s is capitalized in jQuery 1.5 – Arun P Johny Sep 14 '11 at 10:55
Indeed, thanks! – romkyns Sep 14 '11 at 11:24
@arun thanks for the original post, it helped me out :) – rtpHarry Sep 14 '11 at 22:28

Why should you abort the request?

If each request takes more than five seconds, what will happen?

The nice approach is that set a new request only after completing the previous Ajax request.

$(document).ready(

    var fn = function(){

        $.ajax({
            url: 'ajax/progress.ftl',
            success: function(data) {
                //do something
            },

            complete: function(){setTimeout(fn, 500);}
        });
    };

     var interval = setTimeout(fn, 500);

);
share|improve this answer

When you make a request to a server, have it check to see if a progress is not null (or fetching that data) first. If it is fetching data, abort the previous request and initiate the new one.

var progress = null

function fn () {

if (progress) {
progress.abort();
}
progress = $.ajax('ajax/progress.ftl',{
success: function(data) {
//do something
progress = null;
}
});
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.