我Microsoft.AspNetCore.Mvc.ResponseCacheAttribute
第一次使用并遇到了一个问题,我以前在 ASP.NET中使用该VaryByCustom
属性(并在 global.asax 中使用)可以解决这个问题。OutputCache
public override string GetVaryByCustomString(HttpContext context, string s)
这种 VaryByCustom 缓存似乎不再存在于 ASP.NET Core 中。是否有我在这里缺少的内置替代方案,或者我需要自己实现它以实现类似的功能?