Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following code

$.ajax({type: "GET",
  url: "/" + filename,
  dataType: "xml",
  cache: "false",
  success: function(xml)
{
    /* Parsing code here */
}});

In Chrome etc the requests are not cached, however they are in IE. Am I constructing my request properly?

share|improve this question

2 Answers

up vote 15 down vote accepted

cache should be a boolean, not a string:

$.ajax({type: "GET",
  url: "/" + filename,
  dataType: "xml",
  cache: false,
  success: function(xml){
    /* Parsing code here */
  }  
});
share|improve this answer
2  
+1 a string "false" will be interpreted as true if not compared using ===. – Pekka 웃 May 6 '10 at 15:42
3  
@Pekka - that's true, but in this specific case, jQuery DOES compare with ===, however it only attempts to avoid cache if s.cache === false (but of course, "false" === false => false) – Matt May 6 '10 at 15:50
@Matt ah! Good catch. – Pekka 웃 May 6 '10 at 16:06
3  
Good cache I mean catch – James Westgate May 6 '10 at 17:23
3  
@James: Good job you choose programming over comedy as a career path. :P – Matt May 6 '10 at 18:51
show 1 more comment

Perhaps it is the mimetype of the xml file you are returning? http://www.nerdydork.com/ie-json-caching-bug.html

One commenter on my blog suggested adding a time string to the json request:

I’m not going to trust in setting the cache to off in .ajaxSetup….

So just add a time string at the end of each json request, e.g.

$.getJSON( ‘/url/’, { data: 123, t: (new Date()).getTime() }, function(data) { //do whatever } );

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.