We are binding global ajax handlers to check if the browser went offline :

$(document).ajaxSend(function(event, xhr, settings, response){  
   if(!navigator.onLine){  
        xhr.abort();  
   }  
}

then we are showing a dialog to the user that the browser went offline and bind for the 'online' event to hide the dialog when the browser turns online again.

Is there Anyway (even a hacky one) to restart the Ajax request based on the old which fits in the old context?

link|improve this question

Independent of the actual task you are trying to achieve, navigator.onLine is not a reliable means of detecting a connection to the Internet or any network for that matter. – Tegeril Jan 27 at 3:43
feedback

2 Answers

up vote 1 down vote accepted
+50

The cleanest approach I can think of looks like this:

  • A queue for caching ajax request settings so each subsequent AJAX call doesn't overwrite the previous one
  • A conditional in the ajaxSend() handler that either pushes the calls on the queue for later or executes the whole queue.

Edit: Updated working JSFiddle example here.

var ajax_queue = [];
var processing_ajax_queue = false;

$(document).ajaxSend(function(event, xhr, settings, response){
    if(!navigator.onLine){
        xhr.abort();
        ajax_queue.push(settings);
    }
    else if (ajax_queue.length && !processing_ajax_queue)
    // if there's cached calls on queue and we haven't executed the processing ourselves
    {
        processing_ajax_queue = true;
        while (settings = ajax_queue.shift())
        {
            $.ajax(settings);
        }
        processing_ajax_queue = false;
    }
});

Edit:

One pitfall just came to mind: You would have to run a dummy AJAX request when the client comes back online so the queue gets checked.

link|improve this answer
feedback

Well you might clone the object using jQuery and then restart your call when the browser goes back online

// Deep copy
var savedXhr= jQuery.extend(true, {}, xhr);

don't know if this really works, you could try it

EDIT - Ok i tried it and no way, you can't call send() on that object. This is because xhr is not the original request but a 'fake' object created by jQuery A different approach might be this one: You save the settings object and then you start another $.ajax call with those settings. Basically you do

var settingsSaved;

$(document).ajaxSend(function(event, xhr, settings, response) {
    if (!navigator.onLine) {
        settingsSaved = jQuery.extend(true, {}, settings);
        xhr.abort();
    } else {
        //Send the request with the old settings
        $.ajax(settingsSaved);
        //abort the new request
        xhr.abort();
    }
}

Be really careful that this requre an accurate flow control because every time you call $.ajax you trigger another ajaxSend event...maybe you could simply start off a new XMLHTTPRequest using the values from the settingsSaved object.

Look at this fiddle, the first time you click a button, the call is aborted. The second time the call starts with the old settings and from then on all requests are normal

http://jsfiddle.net/hFmWX/

link|improve this answer
and how to restart the request based on the copied xhrObj? – Sep O Sep Jan 13 at 11:06
@SepOSep i updated my answer, give it a look and see if it helps you – Nicola Peluchetti Jan 26 at 13:56
feedback

Your Answer

 
or
required, but never shown

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