3

我正在尝试缓存 ActionResult。在特定的 ActionResult 中,我正在向 cookie 写入一些数据。输出缓存在该操作结果中不起作用。它适用于我不使用 Response.Cookies 的所有其他操作。请帮我解决这个问题。

我正在使用 ASP.NET MVC 4


编辑

(包括代码)

 [OutputCache(Duration = 8000, VaryByParam = "*")]
    public ActionResult List(SearchViewModel searchViewModel, int page = 1, int mode = 1)
    {
        HttpCookie ck = Request.Cookies["Geo"];
        string lat = string.IsNullOrEmpty(Request.Params["lat"]) ? null : Request.Params["lat"];
        string lng = string.IsNullOrEmpty(Request.Params["lng"]) ? null : Request.Params["lng"];
        if (ck == null)
        {
            ck = new HttpCookie("Geo");
            Response.Cookies.Add(ck);
        }
        if (lat != null)
        {
            ck["Lat"] = lat;
            ck["Lon"] = lng;
            ck.Expires = DateTime.Now.AddMonths(2);
            Response.Cookies.Set(ck);
//this is the code which causes problem. If I remove this section catching will work
//other logic goes here.. 
        }
     }
4

2 回答 2

1

请参考微软文档: https ://msdn.microsoft.com/en-us/library/system.web.httpcookie.shareable(v=vs.110).aspx

如果给定的HttpResponse包含一个或多个出站 cookie,并且Shareable设置为 false(默认值),则响应的输出缓存将被抑制。这可以防止包含潜在敏感信息的 cookie 缓存在响应中并发送到多个客户端。

要允许缓存包含 cookie 的响应,请为响应正常配置缓存,例如使用 OutputCache 指令或 MVC 的[OutputCache]属性,并将所有出站 cookie 的 Shareable 设置为 true。

因此,基本上,请确保您将所有 cookie 设置为:

cookie.Shareable = true; // Needed with Outputcache
于 2016-08-10T11:19:33.410 回答
0

我在另一个问题中找到了答案。

看起来好像OutputCache缓存了请求的输出,因此对于具有相同参数的相同请求,它不会运行 action 方法中的代码,它只会返回相同的输出。因此,您的任何代码都不会在后续请求中运行。

看起来另一篇文章中的答案有一些可能的解决方法。

于 2013-07-30T13:27:48.813 回答