gpt4 book ai didi

asp.net-mvc - 在 Asp.net MVC 4 中使用 OutputCacheAttribute 进行条件缓存

转载 作者:行者123 更新时间:2023-12-01 21:38:03 26 4
gpt4 key购买 nike

我正在尝试为我的操作结果实现输出缓存。

在我的操作中,根据某些业务规则返回响应。在我的回复中,我发送了错误代码。 如果出现任何错误,我不想缓存响应。

遵循操作结果

  class Response 
{
public int ErrorCode { get; set; }
public string Message { get; set; }

}


[OutputCache(CacheProfile = "Test")]
public ActionResult Sample()
{
Response response = new Response();
return new JsonResult { Data = response, JsonRequestBehavior = JsonRequestBehavior.AllowGet };
}

仅当 ErrorCode==0 时我才想缓存结果。

我尝试覆盖 OutputCache,但它不起作用

 public class CustomOutputCacheAttribute : OutputCacheAttribute
{
public override void OnActionExecuted(ActionExecutedContext filterContext)
{

if (filterContext.Result is JsonResult)
{
var result = (JsonResult)filterContext.Result;
BaseReponse response = result.Data as BaseReponse;
if (!response.IsSuccess)
{
filterContext.HttpContext.Response.Cache.SetNoStore();
}
base.OnActionExecuted(filterContext);
}
}


}

有没有其他方法或方法可以实现这一目标。

谢谢

最佳答案

您可以创建自己的自定义属性,该属性将根据结果错误代码忽略[OutputCache],如下所示:

[OutputCache(Duration=60, VaryByParam="none")]
[OutputCacheValidation]
public ActionResult Sample()
{
var r = new Response();
r.ErrorCode = 0;
return Json(r, JsonRequestBehavior.AllowGet);
}

public class OutputCacheValidationAttribute : ActionFilterAttribute
{
public override void OnResultExecuting(ResultExecutingContext filterContext)
{
base.OnResultExecuting(filterContext);
filterContext.HttpContext.Response.Cache.AddValidationCallback(ValidatioCallback, filterContext.Result);
}

private static void ValidatioCallback(HttpContext context, object data, ref HttpValidationStatus validationStatus)
{
var jsonResult = data as JsonResult;
if (jsonResult == null) return;

var response = jsonResult.Data as Response;
if (response == null) return;

if (response.ErrorCode != 0)
{
//ignore [OutputCache] for this request
validationStatus = HttpValidationStatus.IgnoreThisRequest;
context.Response.Cache.SetNoServerCaching();
context.Response.Cache.SetNoStore();
}
}
}

关于asp.net-mvc - 在 Asp.net MVC 4 中使用 OutputCacheAttribute 进行条件缓存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28577455/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com