我有控制器操作 Refresh,它只更新当前页面。但是当我通过 RedirectoAction 方法调用该操作时,我遇到了问题,页面没有更新。我必须在那之后按下刷新按钮来独立调用刷新操作,以获得所需的结果。
这是我的客户端代码。这调用了我的 ResetItems 操作,该操作又重定向到 Refresh 操作。
function ResetSelectedItems() {
var guidId = $("#guidId")[0].value;
console.log(guidId[0].value);
$.ajax({
type: 'POST',
url: '/UploadFile/ResetItems',
data: { guidId : guidId},
}
)
}
[HttpPost]
[ActionName("ResetItems")]
public ActionResult ResetItems(string guidId)
{
//Some logic here updating in db etc..
return RedirectToAction("Refresh");
}
[ActionName("Refresh")]
public ActionResult Refresh(int? id)
{
//Refresh logic which eventually render refresh the current view
}
另外我想提一下,在这个项目中我们使用了 IUnitOfWork 模式,它会以某种方式导致这种意想不到的结果吗?
PS 我是 ASP.NET 的新手,请不要判断强硬
编辑:到目前为止我做了什么来找出发生了什么。
我通过提琴手检查我是否从浏览器获得了缓存结果,或者我猜浏览器没有缓存问题,因为结果是 http 200。
我在两个操作中都使用了这个属性[OutputCache(Location=System.Web.UI.OutputCacheLocation.None)]
没有帮助。
守候你守候我
相关分类