MVCで特定の部門を更新する方法を変えました。 1. HTMLアクションリンクを使用する 2. Ajaxアクションリンク 3.メソッド この問題を解決するのを手伝ってください。MVCを使用して特定の部門をリフレッシュする方法
<script src="~/scripts/jquery.unobtrusive-ajax.js"></script>
<script>
function updateAsyncCategoryUpdate() {
var url = '/Home/HomePage';
$.ajax({
url: url,
//data: { value: '1234' }, //if there are any parameters
dataType: "html", //or some other type
success: function() {
window.location.reload(true);
// or something in that area, maybe with the 'data'
},
error: function() {
//some derp
}
});
}
</script>`
@Ajax.ActionLink(item.Name, "HomePage", new { CATEGORy = item.Name }, new AjaxOptions {HttpMethod="GET", OnSuccess = "updateAsyncCategoryUpdate('item.Name')" })
'成功を追加します} ' –