2017-02-09 83 views
0

我对缓存我的视图没有什么问题。当我丢失我的票并注销时,位置标头不正确,并尝试直接进入我以前的URL。ASP .NET MVC OutputCache错误的位置

示例:我在里面/ Admin/Categories,然后由于afk太长而退出,所以我被重定向到/ Admin/Login。登录后,我试图去/管理/类别和缓存发送我/管理/登录而不是/管理/类别。

我的代码:

LOGIN CONTROLLER 
    [OutputCache(CacheProfile = "OneDayCache", VaryByParam = "None", VaryByCustom = "url")] 
    public ActionResult Index() 
    { 
     return View(); 
    } 

    CATEGORIES CONTROLLER 
    [OutputCache(CacheProfile = "OneDayCache", VaryByParam = "None", VaryByCustom = "url")] 
    public ActionResult Index() 
    { 
     if (validations.ValidateTicket()) 
     { 
      return View(); 
     } 
     else 
     { 
      return RedirectToAction("Index", "Login"); 
     } 
    } 

validations.ValidateTicket()将返回true或false,它的工作好 - 这是没问题的。

GLOBAL.ASAX.CS 
    public override string GetVaryByCustomString(HttpContext context, string arg) 
    { 
     if (arg == "url") 
     { 
      return context.Request.RawUrl; 
     } 
     return base.GetVaryByCustomString(context, arg); 
    } 

的Web.config部分内:

<caching> 
    <outputCache enableOutputCache="true" omitVaryStar="true"></outputCache> 
    <outputCacheSettings> 
    <outputCacheProfiles> 
     <add name="OneDayCache" duration="86400" location="Client" /> 
    </outputCacheProfiles> 
    </outputCacheSettings> 
</caching> 

缓存 - 登录(/管理/登录)

HTTP/1.1 200 OK 
Cache-Control: private, max-age=86400 
Content-Type: text/html; charset=utf-8 
Content-Encoding: gzip 
Expires: Fri, 10 Feb 2017 20:35:45 GMT 
Last-Modified: Thu, 09 Feb 2017 20:35:45 GMT 
Vary: Accept-Encoding 
Server: Microsoft-IIS/10.0 
X-AspNetMvc-Version: 5.2 
X-Frame-Options: SAMEORIGIN 
X-AspNet-Version: 4.0.30319 
X-SourceFiles: =?UTF-8?B?TTpcUHJvamVrdHlcQU1CSVQtQ01TLU1WQ1xBTUJJVCBDTVMgTVZDXEFkbWluXExvZ2lu?= 
X-Powered-By: ASP.NET 
Date: Thu, 09 Feb 2017 20:35:45 GMT 
Content-Length: 1113 

缓存 - 分类(/管理/类别) - 看位置头部这是错误的...

HTTP/1.1 302 Found 
Cache-Control: private, max-age=86400 
Content-Type: text/html; charset=utf-8 
Expires: Fri, 10 Feb 2017 20:35:39 GMT 
Last-Modified: Thu, 09 Feb 2017 20:35:39 GMT 
Location: /Admin/Login 
Server: Microsoft-IIS/10.0 
X-AspNetMvc-Version: 5.2 
X-AspNet-Version: 4.0.30319 
X-SourceFiles: =?UTF-8?B?TTpcUHJvamVrdHlcQU1CSVQtQ01TLU1WQ1xBTUJJVCBDTVMgTVZDXEFkbWluXENhdGVnb3JpZXM=?= 
X-Powered-By: ASP.NET 
Date: Thu, 09 Feb 2017 20:35:39 GMT 
Content-Length: 439 

回答

0

好吧,那么问题在于使用VaryByCustom作为参数的OutputCache位置需要设置为Server或任何其他使用Server位置。

例如:

用法在控制器:

[OutputCache(CacheProfile = "ControllerIndexCache")] 

的Web.config:

<caching> 
    <outputCache enableOutputCache="true" omitVaryStar="true"></outputCache> 
    <outputCacheSettings> 
    <outputCacheProfiles> 
     <add name="ControllerIndexCache" duration="10" location="Server" varyByCustom="Url" varyByParam="None" /> 
    </outputCacheProfiles> 
    </outputCacheSettings> 
</caching> 

的Global.asax.cs:

public override string GetVaryByCustomString(HttpContext context, string arg) 
    { 
     if (arg == "Url") 
     { 
      return context.Request.Url.AbsoluteUri; 
     } 
     return base.GetVaryByCustomString(context, arg); 
    } 

该溶液是工作正好。