Prevent Caching in ASP.NET MVC for specific actions using an attribute
我有一个ASP.NET MVC 3应用程序。 此应用程序通过JQuery请求记录。 JQuery回调一个以JSON格式返回结果的控制器动作。 我无法证明这一点,但我担心我的数据可能会被缓存。
我只希望将缓存应用于特定操作,而不是所有操作。
是否有一个属性可以放在一个动作上以确保数据不会被缓存? 如果没有,我如何确保浏览器每次都获得一组新记录而不是缓存集?
要确保JQuery不缓存结果,请在ajax方法上添加以下内容:
1 2 3 4 | $.ajax({ cache: false //rest of your ajax setup }); |
或者为了防止MVC中的缓存,我们创建了自己的属性,你也可以这样做。这是我们的代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method)] public sealed class NoCacheAttribute : ActionFilterAttribute { public override void OnResultExecuting(ResultExecutingContext filterContext) { filterContext.HttpContext.Response.Cache.SetExpires(DateTime.UtcNow.AddDays(-1)); filterContext.HttpContext.Response.Cache.SetValidUntilExpires(false); filterContext.HttpContext.Response.Cache.SetRevalidation(HttpCacheRevalidation.AllCaches); filterContext.HttpContext.Response.Cache.SetCacheability(HttpCacheability.NoCache); filterContext.HttpContext.Response.Cache.SetNoStore(); base.OnResultExecuting(filterContext); } } |
然后用
1 2 | [NoCache] public class ControllerBase : Controller, IControllerBase |
如果您需要它们是不可缓存的,而不是装饰整个控制器,您还可以使用此属性修饰某些操作。
如果您的类或操作在浏览器中呈现时没有
您可以使用内置缓存属性来防止缓存。
对于.net Framework:
对于.net Core:
请注意,无法强制浏览器禁用缓存。您可以做的最好的事情是提供大多数浏览器都会尊重的建议,通常采用标题或元标记的形式。此装饰器属性将禁用服务器缓存并添加此标头:
此外,JQuery和其他客户端框架将尝试通过向URL添加内容(例如时间戳或GUID)来欺骗浏览器不使用其缓存的资源版本。这有效地使浏览器再次请求资源,但并不真正阻止缓存。
最后说明。您应该知道,资源也可以缓存在服务器和客户端之间。 ISP,代理和其他网络设备也会缓存资源,它们通常使用内部规则而不查看实际资源。关于这些,你无能为力。好消息是它们通常缓存较短的时间范围,如秒或分钟。
所有你需要的是:
1 2 | [OutputCache(Duration=0)] public JsonResult MyAction( |
或者,如果要为整个Controller禁用它:
1 2 | [OutputCache(Duration=0)] public class MyController |
尽管这里的评论存在争议,但这足以禁用浏览器缓存 - 这会导致ASP.Net发出响应标头,告诉浏览器文档立即过期:
在控制器操作中,向标题添加以下行
1 2 3 4 5 | public ActionResult Create(string PositionID) { Response.AppendHeader("Cache-Control","no-cache, no-store, must-revalidate"); // HTTP 1.1. Response.AppendHeader("Pragma","no-cache"); // HTTP 1.0. Response.AppendHeader("Expires","0"); // Proxies. |
这是mattytommo提出的
1 2 3 4 5 6 7 8 | [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method)] public sealed class NoCacheAttribute : OutputCacheAttribute { public NoCacheAttribute() { this.Duration = 0; } } |
对于MVC6(DNX),没有
注意:设置
但是我们有
1 2 3 4 5 6 7 8 9 10 11 12 |
可以使用自定义属性覆盖初始过滤器
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method)] public sealed class NoCacheAttribute : ActionFilterAttribute { public override void OnResultExecuting(ResultExecutingContext filterContext) { var filter=filterContext.Filters.Where(t => t.GetType() == typeof(ResponseCacheFilter)).FirstOrDefault(); if (filter != null) { ResponseCacheFilter f = (ResponseCacheFilter)filter; f.NoStore = true; //f.Duration = 0; } base.OnResultExecuting(filterContext); } } |
这是一个用例
1 2 3 4 5 6 |
Asp.Net MVC Core的正确属性值可防止浏览器缓存(包括Internet Explorer 11):
1 | [ResponseCache(Location = ResponseCacheLocation.None, NoStore = true)] |
如Microsoft文档中所述:
ASP.NET Core中的响应缓存 - NoStore和Location.None
MVC中的输出缓存
1 2 3 4 | [OutputCache(NoStore = true, Duration = 0, Location="None", VaryByParam ="*")] OR [OutputCache(NoStore = true, Duration = 0, VaryByParam ="None")] |