207

我有一个 ASP.NET MVC 3 应用程序。此应用程序通过 jQuery 请求记录。jQuery 回调一个以 JSON 格式返回结果的控制器操作。我无法证明这一点,但我担心我的数据可能会被缓存。

我只希望将缓存应用于特定操作,而不是所有操作。

是否有一个属性可以让我执行操作以确保数据不会被缓存?如果没有,我如何确保浏览器每次都获得一组新记录,而不是缓存组?

4

9 回答 9

313

为确保 JQuery 不缓存结果,请在您的 ajax 方法中输入以下内容:

$.ajax({
    cache: false
    //rest of your ajax setup
});

或者为了防止在 MVC 中缓存,我们创建了自己的属性,您也可以这样做。这是我们的代码:

[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);
    }
}

然后用 . 装饰你的控制器[NoCache]。或者为所有你做这件事,你可以把属性放在你继承你的控制器(如果你有一个)的基类的类上,就像我们在这里一样:

[NoCache]
public class ControllerBase : Controller, IControllerBase

如果您需要它们不可缓存,您还可以使用此属性装饰一些操作,而不是装饰整个控制器。

如果您的类或动作NoCache在浏览器中呈现时没有,并且您想检查它是否正常工作,请记住在编译更改后您需要在浏览器中执行“硬刷新”(Ctrl+F5)。在您这样做之前,您的浏览器将保留旧的缓存版本,并且不会使用“正常刷新”(F5) 来刷新它。

于 2012-04-04T13:15:56.110 回答
269

您可以使用内置的缓存属性来防止缓存。

对于 .net 框架:[OutputCache(NoStore = true, Duration = 0)]

对于 .net 核心:[ResponseCache(NoStore = true, Duration = 0)]

请注意,无法强制浏览器禁用缓存。你能做的最好的就是提供大多数浏览器都会接受的建议,通常以标题或元标记的形式。此装饰器属性将禁用服务器缓存并添加此标头:Cache-Control: public, no-store, max-age=0。它不添加元标记。如果需要,可以在视图中手动添加这些。

此外,JQuery 和其他客户端框架将尝试通过向 url 添加内容(如时间戳或 GUID)来欺骗浏览器,使其不使用资源的缓存版本。这在使浏览器再次请求资源方面很有效,但并不能真正阻止缓存。

最后一点。您应该知道,资源也可以缓存在服务器和客户端之间。ISP、代理和其他网络设备也缓存资源,它们经常使用内部规则而不查看实际资源。对于这些,您无能为力。好消息是它们通常会缓存较短的时间范围,例如几秒钟或几分钟。

于 2013-09-04T18:12:48.470 回答
49

所有你需要的是:

[OutputCache(Duration=0)]
public JsonResult MyAction(

或者,如果您想为整个控制器禁用它:

[OutputCache(Duration=0)]
public class MyController

尽管此处的评论存在争议,但这足以禁用浏览器缓存 - 这会导致 ASP.Net 发出响应标头,告诉浏览器文档立即过期:

OutputCache Duration=0 响应标头:max-age=0, s-maxage=0

于 2014-08-05T16:47:56.633 回答
17

在控制器操作中,将以下几行附加到标题

    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.
于 2013-09-16T14:08:46.480 回答
5

这是NoCachemattytommo 提出的属性,通过使用 Chris Moschini 的回答中的信息进行了简化:

[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method)]
public sealed class NoCacheAttribute : OutputCacheAttribute
{
    public NoCacheAttribute()
    {
        this.Duration = 0;
    }
}
于 2015-02-26T12:55:19.613 回答
4

对于 MVC6 ( DNX ),没有System.Web.OutputCacheAttribute

注意:设置NoStoreDuration 参数时不考虑。可以为首次注册设置初始持续时间并使用自定义属性覆盖它。

但是我们有Microsoft.AspNet.Mvc.Filters.ResponseCacheFilter

 public void ConfigureServices(IServiceCollection services)
        ...
        services.AddMvc(config=>
        {
            config.Filters.Add(
                 new ResponseCacheFilter(
                    new CacheProfile() { 
                      NoStore=true
                     }));
        }
        ...
       )

可以使用自定义属性覆盖初始过滤器

    [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);
        }
    }

这是一个用例

    [NoCache]
    [HttpGet]
    public JsonResult Get()
    {            
        return Json(new DateTime());
    }
于 2016-05-17T08:17:30.310 回答
3

ASP.NET MVC 5 解决方案:

  1. 在中心位置缓存预防代码:App_Start/FilterConfig.csRegisterGlobalFilters方法:
    public class FilterConfig
    {
        public static void RegisterGlobalFilters(GlobalFilterCollection filters)
        {
            // ...
            filters.Add(new OutputCacheAttribute
            {
                NoStore = true,
                Duration = 0,
                VaryByParam = "*",
                Location = System.Web.UI.OutputCacheLocation.None
            });
        }
    }
  1. 一旦你有了它,我的理解是你可以通过在或级别应用不同的OutputCache指令来覆盖全局过滤器。对于常规控制器,它是ControllerView
[OutputCache(NoStore = true, Duration = 0, Location=System.Web.UI.ResponseCacheLocation.None, VaryByParam = "*")]

或者如果它ApiController

[System.Web.Mvc.OutputCache(NoStore = true, Duration = 0, Location = System.Web.UI.OutputCacheLocation.None, VaryByParam = "*")]
于 2020-03-13T21:27:31.007 回答
2

Asp.Net MVC Core防止浏览器缓存(包括Internet Explorer 11 )的正确属性值为:

[ResponseCache(Location = ResponseCacheLocation.None, NoStore = true)]

如 Microsoft 文档中所述:

ASP.NET Core 中的响应缓存 - NoStore 和 Location.None

于 2018-01-31T14:42:24.677 回答
1

MVC 中的输出缓存

[OutputCache(NoStore = true, Duration = 0, Location="None", VaryByParam = "*")]

或者
[OutputCache(NoStore = true, Duration = 0, VaryByParam = "None")]

于 2015-10-01T06:59:04.207 回答