gpt4 book ai didi

asp.net-mvc - Internet Explorer缓存asp.net MVC Ajax结果

转载 作者:行者123 更新时间:2023-12-03 13:20:36 24 4
gpt4 key购买 nike

我在Internet Explorer的页面上遇到问题。
我有一个ajax调用,在其他浏览器中,当我单击该链接时,它将在 Controller 中传递并正确加载数据,从而调用表单。但是在IE中,一次加载后,它消失了,却带给我相同的旧结果,而无需传入 Controller 。

最佳答案

尝试:

[OutputCache(NoStore = true, Duration = 0, VaryByParam = "*")]

放置在 Controller 类中的此属性禁用缓存。由于不需要在应用程序中缓存,因此将其放置在BaseController类中:
[OutputCache(NoStore = true, Duration = 0, VaryByParam = "*")]
public abstract class BaseController : Controller
{

这是有关OutputCacheAttribute的不错描述: Improving Performance with Output Caching

您也可以将其付诸行动。

关于asp.net-mvc - Internet Explorer缓存asp.net MVC Ajax结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2653092/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com