我检查了this question,它解决了我最初的问题。但是我不希望仅在用户单击链接时呈现局部视图,我想在页面加载时呈现部分视图,并且可能在加载局部视图时显示进度指示器。
如何实现?
非常感谢您阅读本文。
答案 0 :(得分:62)
如果你想加载页面,然后通过ajax加载局部视图,你可以创建一个类似的ActionMethod
:
public ActionResult Create()
{
var model = new MyModel();
if (Request.IsAjaxRequest())
{
return PartialView( "_Partial", model.PartialModel );
}
else
{
return View( model );
}
}
然后在您的页面中执行以下操作:
$(function(){
$(document).ajaxStart(function () {
//show a progress modal of your choosing
showProgressModal('loading');
});
$(document).ajaxStop(function () {
//hide it
hideProgressModal();
});
$.ajax({
url: '/controller/create',
dataType: 'html',
success: function(data) {
$('#myPartialContainer').html(data);
}
});
});
答案 1 :(得分:10)
控制器
public ActionResult GetModule(string partialName){
return PartialView("~/Views/Shared/"+partialName);
}
默认页面上的(使用jquery ajax操作)
<div id='mod1'>Loading...</div>
<script type="text/javascript">
$("#mod1").load("/ControllerName/GetModule?partialName=test1");
</script>
答案 2 :(得分:7)
您可以通过编写@Html.Partial(...)
来在初始页面中呈现它。