ROR + MVC 禁用浏览器缓存
我正在寻找为整个 Ruby On Rails MVC 网站禁用浏览器缓存的方法,
我找到了以下方法,
Response.Cache.SetExpires(DateTime.Now.AddSeconds(5));
Response.Cache.SetCacheability(HttpCacheability.Public);
Response.Cache.SetValidUntilExpires(true);
以及元标记方法。
<meta http-equiv="PRAGMA" content="NO-CACHE">
但我正在寻找简单的方法来禁用整个网站的浏览器缓存。
I am looking for method to disable Browser Cache for entire Ruby On Rails MVC Website
I found following method,
Response.Cache.SetExpires(DateTime.Now.AddSeconds(5));
Response.Cache.SetCacheability(HttpCacheability.Public);
Response.Cache.SetValidUntilExpires(true);
and also for meta tag method.
<meta http-equiv="PRAGMA" content="NO-CACHE">
But i am looking for simple method, to disable browser cache for entire website.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
朋友们,经过谷歌搜索了很长时间。我对此有一个解决方案。我不知道这是更好还是最好。但我的问题已经解决了。
在 application_controller.rb 中添加以下代码。
谢谢 Goooooogle
Friends, After a long search on Google. I got one solution for this. I do not know Is this better or best. But My problem is resolved.
Add below your code in application_controller.rb..
Thanks Goooooogle