我尝试过这个中间件,但浏览器仍在保存文件.
我希望用户将始终获得js和css文件的最新版本.
public void Configure(IApplicationBuilder app) { app.UseSession(); app.UseDefaultFiles(); app.UseStaticFiles(new StaticFileOptions { OnPrepareResponse = context => context.Context.Response.Headers.Add("Cache-Control", "no-cache") }); }
Mentor.. 30
禁用ASP.NET核心中的浏览器缓存:
public class HomeController : Controller { [ResponseCache(NoStore =true, Location =ResponseCacheLocation.None)] public IActionResult Index() { return View(); } }
Will Ray.. 20
尝试添加Expires
标题:
app.UseStaticFiles(new StaticFileOptions() { OnPrepareResponse = context => { context.Context.Response.Headers.Add("Cache-Control", "no-cache, no-store"); context.Context.Response.Headers.Add("Expires", "-1"); } });
另一种方法是添加一个查询字符串,该查询字符串会在开发过程中更改为您的请求的末尾.在这种情况下不需要中间件.
MushyPeas.. 9
另一种方法是使用ASP-Attribute链接你的文件时_Layout.cshtml
使用asp-append-version
你将在每次文件更改时添加一个新的哈希,所以写:
最终会导致:
`
所以你得到了缓存和开箱即用的最新版本.
禁用ASP.NET核心中的浏览器缓存:
public class HomeController : Controller { [ResponseCache(NoStore =true, Location =ResponseCacheLocation.None)] public IActionResult Index() { return View(); } }
尝试添加Expires
标题:
app.UseStaticFiles(new StaticFileOptions() { OnPrepareResponse = context => { context.Context.Response.Headers.Add("Cache-Control", "no-cache, no-store"); context.Context.Response.Headers.Add("Expires", "-1"); } });
另一种方法是添加一个查询字符串,该查询字符串会在开发过程中更改为您的请求的末尾.在这种情况下不需要中间件.
另一种方法是使用ASP-Attribute链接你的文件时_Layout.cshtml
使用asp-append-version
你将在每次文件更改时添加一个新的哈希,所以写:
最终会导致:
`
所以你得到了缓存和开箱即用的最新版本.