定期刷新局部视图(ASP.Net MVC)

前端之家收集整理的这篇文章主要介绍了定期刷新局部视图(ASP.Net MVC)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要定期刷新.Net的局部视图.它正在使用Ajax.ActionLink,是否有类似的定期刷新功能?我可以不使用jQuery吗?

解决方法

禅,你可以用这样的代码来做:
function loadPartialView() {
   $.ajax({
    url: "@Url.Action("ActionName","ControllerName")",type: 'GET',// <-- make a async request by GET
    dataType: 'html',// <-- to expect an html response
    success: function(result) {
                $('#YourDiv').html(result);
             }
   });
}

$(function() {

   loadPartialView(); // first time

   // re-call the function each 5 seconds
   window.setInterval("loadPartialView()",5000);

});

记住你的Action应该返回一个PartialView.我希望它对你有所帮助!

原文链接:https://www.f2er.com/aspnet/246494.html

猜你在找的asp.Net相关文章