我嘗試過不同的方法來刷新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')" })
'成功:功能(數據){$(someDiv)。html的(數據); }' –