15

我正在使用 ASP.NET WebApi 并使用以下代码来停止缓存所有内容:

public override System.Threading.Tasks.Task<HttpResponseMessage> ExecuteAsync(System.Web.Http.Controllers.HttpControllerContext controllerContext, System.Threading.CancellationToken cancellationToken)
{
    System.Threading.Tasks.Task<HttpResponseMessage> task = base.ExecuteAsync(controllerContext, cancellationToken);
    task.GetAwaiter().OnCompleted(() =>
                                      {
                                          task.Result.Headers.CacheControl = new CacheControlHeaderValue()
                                          {
                                              NoCache = true,
                                              NoStore = true,
                                              MaxAge = new TimeSpan(0),
                                              MustRevalidate = true
                                          };
                                          task.Result.Headers.Pragma.Add(new NameValueHeaderValue("no-cache"));
                                          task.Result.Content.Headers.Expires = DateTimeOffset.MinValue;
                                      });
    return task;
}

结果标题如下所示(chrome):

Cache-Control:no-store, must-revalidate, no-cache, max-age=0
Content-Length:1891
Content-Type:application/json; charset=utf-8
Date:Fri, 19 Jul 2013 20:40:23 GMT
Expires:Mon, 01 Jan 0001 00:00:00 GMT
Pragma:no-cache
Server:Microsoft-IIS/8.0

在阅读了有关该错误(如何停止 chrome 缓存)后,我添加了“无商店” 。

然而,无论我做什么,当我做一些让我离开这个页面的事情,然后使用“后退”按钮时,chrome总是从缓存中加载:

Request Method:GET
Status Code:200 OK (from cache)

有谁知道为什么会这样?我已经确认该请求永远不会命中服务器。

4

1 回答 1

8

答案是 Chrome 不喜欢“Expires:Mon, 01 Jan 0001 00:00:00 GMT”(基本上是假日期)。

我将日期更改为他们在 Google API 中使用的日期,并且成功了:

Cache-Control:no-store, must-revalidate, no-cache, max-age=0
Content-Length:1897
Content-Type:application/json; charset=utf-8
Date:Fri, 19 Jul 2013 20:51:49 GMT
Expires:Mon, 01 Jan 1990 00:00:00 GMT
Pragma:no-cache
Server:Microsoft-IIS/8.0

因此,对于遇到此问题的任何其他人,请确保将您的到期日期设置为这个任意日期!

于 2013-07-19T20:55:51.000 回答