我正在尝试如何为asp.net内核1.0实现GetVaryByCustomString函数。
你为asp.net核心1.0实现了这种功能吗?
感谢
在我问了这个问题之后,我突然想到了使用中间件,我实现了一个类,如下所示:
public class OutputCacheHeaderMiddleware
{
private readonly RequestDelegate _next;
public OutputCacheHeaderMiddleware(RequestDelegate next)
{
_next = next;
}
public async Task Invoke(HttpContext context)
{
var user = UserHelper.GetUser(context);
if (user?.UserInfos != null)
{
var key = "user_1_a_" + string.Join(",", user.UserInfos.Select(u => u.Id));
context.Request.Headers.Add("dt-cache-user", key);
}
await _next.Invoke(context);
}
}
然后,它有一个扩展方法:
public static class OutputCacheHeaderExtensions
{
public static IApplicationBuilder UseOutputCacheHeader(this IApplicationBuilder builder)
{
return builder.UseMiddleware<OutputCacheHeaderMiddleware>();
}
}
在Startup.cs配置方法中,我添加了app.UseOutputCacheHeader();
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
app.UseOutputCacheHeader();
app.UseIISPlatformHandler();
app.UseStaticFiles();
app.UseMvc(routes =>
{
routes.MapRoute(
name: "default",
template: "{controller=Home}/{action=Index}/{id?}");
});
}
和控制器上:
[ResponseCache(VaryByHeader = "dt-cache-user", Duration = 6000)]
public IActionResult Index()
{
return View();
}
在所有这些之后,当我调试它时,我可以看到有一个具有正确值的标头"dt-cache-user",但ResponseCache不起作用。每当我点击F5刷新页面时,它总是达到调试点。
它不起作用的原因可能是什么?
谢谢。