5

我使用 Asp.Net Core RC2 和 Kestrel 作为我的 Web 服务器。我需要确保使用无缓存标头响应请求(在这种情况下为所有请求),以便浏览器获得最新版本(不是 304)。

Startup 中是否有办法配置 Kestrel 或将此步骤注入管道?

编辑:在我的情况下,no-store 可能是更好的选择:https ://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/http-caching "no-store 响应不允许被缓存并且必须在每次请求时全部获取。”

4

1 回答 1

10

您可以使用中间件来处理标头。例如,您可以通过将以下内容添加到 Startup 的 Configure 方法的顶部来强制 no-cache 缓存控制:

app.Use(async (httpContext, next) =>
{
    httpContext.Response.Headers[HeaderNames.CacheControl] = "no-cache";
    await next();
});
于 2016-05-02T18:03:14.830 回答