I get some json data with ajax when the page DOM is loaded using jQuery like this:
$(document).ready(function(){
getData();
});
...where getData() is a simple jQuery ajax call, something like this:
function getData(){
$.ajax({cache: true, dataType: 'json', url: '/foo/bar'});
}
The Expires header for this request is set to some time in the future, so the next time I load the page, the ajax call should use the cached data. Firefox 3 does not.
But, if I instead ask for the data like this:
$(document).ready(function(){
setTimeout("getData()", 1);
});
Firefox does respect the Expires header, and uses the cache. Any ideas why this would be?
This page mentions that browsers may treat ajax calls that occur when a page loads differently from ajax calls that occur in response to a user UI event.
Edit: I forgot to include the http headers in my original post. I think the headers are fine, because the caching works as long as the request isn't made in an ajax call when the page loads. If I visit the url that the ajax call uses in my browser URL bar, caching works, and as I explain above, caching works if I add a little delay to the ajax call.
Request headers
- Host 10.0.45.64:5004
- User-Agent Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.9) Gecko/20100824 Firefox/3.6.9
- Accept application/json, text/javascript, /
- Accept-Language en-us,en;q=0.5
- Accept-Encoding gzip,deflate
- Accept-Charset ISO-8859-1,utf-8;q=0.7,*;q=0.7
- Keep-Alive 115
- Connection keep-alive
- X-Requested-With XMLHttpRequest
- Cookie
Response headers
I set the Expires header to 1 week in the future so that users only need to refresh once a week.
- Date Wed, 04 May 2011 15:32:04 GMT
- Last-Modified Wed, 04 May 2011 15:32:03 GMT
- Expires Wed, 11 May 2011 15:32:03 GMT
- Content-Type text/javascript
- Cache-Control Public
- Connection close
cache:truedoesn't do what you think it does. In fact, it does nothing at all. – Crescent Fresh May 2 '11 at 21:18