.net – MVC 5中的“CacheProfile”

前端之家收集整理的这篇文章主要介绍了.net – MVC 5中的“CacheProfile”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是MVC的初学者,我有一个项目,从MVC2转换到最新版本的MVC.
我读了一些关于MVC 4的书,所以我开始理解主要的机制.

但是,在转换我的MVC 2解决方案时,我遇到了一个属性问题:OutputCache.

通过例如.我有多个这样的动作(属性可能会有所不同):

[OutputCache(CacheProfile = "ProductImage")]
public ActionResult GetImage(Guid elementId,int imgtype)

在Web.Config我有“缓存> outputCacheSettings> outputCacheProfiles>”:

<add name="ProductImage" duration="5" varyByParam="elementId,imgtype" />

并在输出获取以下异常:

OutputCacheAttribute for child actions only supports Duration,
VaryByCustom,and VaryByParam values. Please do not set CacheProfile,
Location,NoStore,sqlDependency,VaryByContentEncoding,or
VaryByHeader values for child actions.

据我所知,问题只出现在儿童行动中.

>在最新的MVC中是否有另一种方法可以获得缓存配置文件
>有没有办法确定该动作是否为子动作才能修改该动作?

解决方法

解决了安装 MvcDonutCaching nuget并用[DonutOutputCache替换[OutputCache …

more.

原文链接:https://www.f2er.com/aspnet/247147.html

猜你在找的asp.Net相关文章