vote up 0 vote down star

Within jQuery.ajax we have the blessing of setting a timeout in milliseconds and an Error callback to process that timeout.

However, the some people are simply on slow connection, with small amounts of patience. What I want to do is simply display a message stating "This is taking longer than usual".

The Timeout arguement in jQuery won't satisfy this, and setTimeout() does exactly the same thing. How could this be achieved with a simple time check?

flag

75% accept rate

2 Answers

vote up 0 vote down check

OK, this was simple enough.

All I needed to do was actually set up an independent Timout, with a function inside to display whatever message I needed to.

You can still keep in the Timeout/Error Callback for really long extended periods, too.

var timeout = true;

timeout = setTimeout(function() {
	if (timeout) {
		$("#zendesk-dropbox-error").html("Contacting the Helpdesk is taking longer than usual, try submitting manually?");
	}
}, 9000);


// Call for a JSON return from the PHP script
$.ajax({ type: 'GET', url: http://www.example.com, dataType: 'json', cache: false, data: ({ a: 'b' }), timeout: 60000, 
    success: function(zendesk){
        timeout = false;
        // Code
    },error: function(objAJAXRequest, strError) {
        // Code
    }
});
link|flag
This works only for one ajax request but not on smart phones where some requests are slow and some are fast... i thought you want to be more accurate than this.. – Ghommey Oct 13 at 6:49
That's fine, since it won't be available for smart phones - it's part of a much bigger app which Smart Phones couldn't possibly handle. It's an isolated, modular AJAX request and as such will be the only one running. – jakeisonline Oct 13 at 7:32
vote up -1 vote down

What about measuring the time of your ajax request?

js

$.get('yourrequest.php',{ start: Date.parse ( new Date() ) }, // <- local time
   function(data){   
         alert('your request took: ' + Date.parse ( new Date() ) - data.start + "ms")
   }, 'json');

php

//send back the local time (NOT the server time) together with your information
echo "{'start' : "'.$_GET('start')."'}";


if you just want to have a timing than use a time difference ...

var ajaxRequest = [];
var pos = -1;


function requestSth( url , options )
{
    if (options == null) 
        options = {};

    $.extend(options, { id: pos } );

    ajaxRequest[++pos] = Date.parse(new Date());
    $.get(url, options,
       function(data){   
             alert( 'request ' + data.id + ' returned duration: ' + Date.parse(new Date()) - ajaxRequest[ data.id ]  );
             ajaxRequest[ data.id ] = -1; // remember that you got a response
       }, 'json');

}


setInterval( function () {
   for (var i = 0; i < ajaxRequest.length ; i++)
   {
       if ( ajaxRequest[ i ] > 0 )
            alert('still waiting for request: ' + i + ' duration: ' + Date.parse(new Date()) - ajaxRequest[ i ]  );
   }
}, 1000);

requestSth ( "mypage.php", {name : 'test'});

php

echo "{'id' : "'.$_GET('id')."'}";

this will give you an alert every second for all ajax requests without response

link|flag
This relies on there being a response from the PHP script, I'm talking about timing locally - because if the script is hanging thanks to a slow connection on the client end, this won't help. Thanks though. – jakeisonline Oct 12 at 14:00
hey why did you downvote me? it does use the local javascript time! it is only sent to the server to guarantee that it doesn't mix up with other ajax calls! – Ghommey Oct 12 at 14:03
You're passing it within the callback? So that will only execute when it actually has data to use within function(data) {} – jakeisonline Oct 12 at 14:05
Thanks again for your answer, I do appreciated it. In the end I figured it out, I was just being rather stupid :) I think your answer would work but ultimately went with a less long winded approach, and steered away from jQuery.get too – jakeisonline Oct 12 at 16:17

Your Answer

Get an OpenID
or

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