8

谁能告诉我是否可以跨多个页面缓存 RenderPartial?我有一个用户配置文件的 RenderPartial,除非用户更新他们的配置文件,否则它不应该真正改变。所以我真的不想每次加载页面时都返回并获取他/她的个人资料。我宁愿传递部分内容,直到我被迫更新(即个人资料更新)

我查看了 p.haack 放在一起的DonutHole示例,但它似乎与单个页面相关。有人可以指出我正确的方向或提供任何建议吗?还是我一次只能缓存一页?谢谢!

4

1 回答 1

12

您可以改用 RenderAction。例子:

public class HomeController : Controller
{
    public ActionResult Index()
    {
        return View();
    }

    public ActionResult About()
    {
        return View();
    }

    [OutputCache(Duration = 6000, VaryByParam = "none")]
    public ActionResult Cached()
    {
        // You could return whatever you want here, even a view
        // but for the purpose of the demonstration I am simply
        // returning a dynamic string value
        return Content(DateTime.Now.ToLongTimeString(), "text/html");
    }
}

Index.cshtmlandAbout.cshtml视图中,您可以包含子操作:

<div>
    @{Html.RenderAction("Cached");}
</div>

并且您将在两个页面中获得它的缓存版本。

于 2011-03-04T13:53:53.993 回答