javascript - prevent xmlHttpReq 's browser caching - Stack Overflow

It seems that all the browsers other than Opera cache XHR requests in my Javascript program.The URL in

It seems that all the browsers other than Opera cache XHR requests in my Javascript program. The URL in the XHR request refers to a CGI program on the server which generates a different output everytime its called. B Is there a way in Javascript to make the browser not cache XHR requests?

It seems that all the browsers other than Opera cache XHR requests in my Javascript program. The URL in the XHR request refers to a CGI program on the server which generates a different output everytime its called. B Is there a way in Javascript to make the browser not cache XHR requests?

Share Improve this question asked Oct 21, 2010 at 6:47 GirishGirish 9253 gold badges10 silver badges20 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 12

For every AJAX request you make, generate a unique value and add it to the ajax URL as a query parameter:

/example/url/post.php?rand=09809807896768

I use to generate the current unix timestamp in JS and use that - this ensures I do not get duplicated stamps.

That way every request is unique and will not get cached. This is a simple but fairly mon AJAX trick - usually fixing IE and testing issues.

If you were to use jQuery, it does this for you by setting the property cache to false on the AJAX settings.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743592024a4475821.html

相关推荐

  • javascript - prevent xmlHttpReq 's browser caching - Stack Overflow

    It seems that all the browsers other than Opera cache XHR requests in my Javascript program.The URL in

    1天前
    20

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信