在MVC中我的脚本在DEBUG模式下获取缓存
check here(抱歉,由于我没有足够的声誉,因此无法发布图片)
我想禁用缓存清理,我在下面尝试了
BundleTable.EnableOptimizations = false;
和web.config
<location path="Scripts">
<system.webServer>
<staticContent>
<clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="365.00:00:00" cacheControlCustom="public" />
</staticContent>
</system.webServer>
</location>
但是脚本仍然被缓存破坏,我可以在哪里检查以禁用缓存破坏... IIS?