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 am trying to cache a very simple javascript response. I am using rails and my views/projects/index.js.erb contains only the following:

          alert('hi');

and when I request

  $.ajax({
    type: 'GET',
    cache: true,
    url : '/projects',
    dataType: 'script'
  });

I get the popup 'hi' and I see in my server log that a request to Projects#index action as js has been made to it.

Then without refreshing the browser and I do it again

  $.ajax({
    type: 'GET',
    cache: true,
    url : '/projects',
    dataType: 'script'
  });

I see that the server still gets a request can anyone spot anything that I might have missed?

Thank you!

share|improve this question
Are you getting any errors? – Richard Marskell - Drackir Mar 23 '11 at 2:18
No, no error in the console at all. I checked both firefox and chrome's console. and I am not getting any request logged in the server log; and I have already went ahead and create a new simple app just so that none other plugin/script or anything can be interfereing. just a naked barebone page now with nothing on it. – Nik Mar 23 '11 at 2:19
2  
Maybe I'm looking at the jQuery docs wrong, but isn't the second param to getScript the callback function? – BStruthers Mar 23 '11 at 2:19
@BStruthers: Aha, you are correct. The settings should be passed to $.ajax() not $.getScript(). That's probably the issue. – Richard Marskell - Drackir Mar 23 '11 at 2:22
so should I do $.ajax(url, {dataType:'script',cache:true})? – Nik Mar 23 '11 at 2:23
show 2 more comments

1 Answer

up vote 1 down vote accepted

I found out what's wrong. jQuery actually surround the incoming script with a so that the browser evaluates the incoming code. But the caching mechansim merely saves the code as text and when one re-request, it returns the code as text but not evaluate it. Therefore, one needs to eval the code explicitly

share|improve this answer
surround the incoming script with a what? – jeshan Dec 7 '12 at 6:00

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.