1 回答

TA貢獻(xiàn)1802條經(jīng)驗(yàn) 獲得超10個(gè)贊
您正在使用 AJAX 請(qǐng)求,這意味著無(wú)論響應(yīng)如何,都不會(huì)重新加載 html 頁(yè)面。我想你需要這樣的東西:
[HttpPost]
[ActionName("ResetItems")]
public ActionResult ResetItems(string guidId)
{
//Some logic here updating in db etc..
//string redirectUrl = Url.Action("Refresh", new { id = "your int id" });
string redirectUrl = Url.Action("Refresh");
return Json(new { redirectUrl });
}
$.ajax({
type: 'POST',
url: '/UploadFile/ResetItems',
data: { guidId : guidId},
success: function (response) {
window.location.replace(response.redirectUrl);
}
});
- 1 回答
- 0 關(guān)注
- 379 瀏覽
添加回答
舉報(bào)