【发布时间】:2016-08-16 07:15:46
【问题描述】:
我的MVC5项目中有一个布局页面,我想通过单击左侧的菜单链接(超链接)来呈现所有页面内容(部分视图),如下所示。有一些方法使用Ajax 等,但我不确定哪种方法最能满足我的需求。有没有关于这个问题的例子,包含Layout 页面和Controller 方法?
【问题讨论】:
标签: javascript jquery asp.net-mvc razor asp.net-mvc-partialview
我的MVC5项目中有一个布局页面,我想通过单击左侧的菜单链接(超链接)来呈现所有页面内容(部分视图),如下所示。有一些方法使用Ajax 等,但我不确定哪种方法最能满足我的需求。有没有关于这个问题的例子,包含Layout 页面和Controller 方法?
【问题讨论】:
标签: javascript jquery asp.net-mvc razor asp.net-mvc-partialview
您必须首先将您的正文内容包装在 div 中并为其分配任何 id:
<div id="divContentArea">
@RenderBody()
</div>
现在在脚本菜单点击事件:
$(".menuLinkItem").click(function (e) {
e.preventDefault();
var controllerName = $(this).attr('data-controllername');
var actionName = $(this).attr('data-actionname');
if (String(actionName).trim() == '') {
return false;
}
if (typeof (controllerName) == "undefined") {
return false;
}
var url = "/" + controllerName + "/" + actionName;
//Open url in new tab with ctrl key press
if (e.ctrlKey) {
window.open(url, '_blank');
event.stopPropagation();
return false;
}
$.ajax({
url: url,
type: 'POST',
success: function (data) {
var requestedUrl = String(this.url).replace(/[&?]X-Requested-With=XMLHttpRequest/i, "");
if (typeof (requestedUrl) == "undefined" || requestedUrl == 'undefined') {
requestedUrl = window.location.href;
}
// if the url is the same, replace the state
if (typeof (history.pushState) != "undefined") {
if (window.location.href == requestedUrl) {
history.replaceState({ html: '' }, document.title, requestedUrl);
}
else {
history.pushState({ html: '' }, document.title, requestedUrl);
}
}
$("#divContentArea").html(data);
},
error: function (xhr) {
}
});
});
控制器:
[AcceptVerbs(HttpVerbs.Get | HttpVerbs.Post)]
public PartialViewResult Index()
{
if (HttpContext.Request.HttpMethod == "GET")
{
return View();
}
else
{
return PartialView();
}
}
【讨论】: