先谢谢你的帮助。我对MVC很新。目前我正在使用MVC 4.我有以下在_viewstart中引用的布局(注意这是VB语法)。在其中,我正在使用子动作来渲染基于xml文件的菜单。我第一次运行应用程序时工作正常;但是,只要我刷新页面或移动到应用程序中的不同URL,菜单就会丢失。
<header>
<div class="content-wrapper">
<div class="float-left">
<p class="site-title">@Html.ActionLink("Logo Here", "Index", "Home")</p>
</div>
<div class="float-right">
<section id="login">
@Html.Partial("_LoginPartial")
</section>
<nav>
<ul id="menu">
@Html.Action("Menu", "_MenuBar")
</ul>
</nav>
</div>
</div>
</header>
以下是部分视图:
@ModelType IEnumerable(Of MenuItem)
@Scripts.Render("~/bundles/jquery")
@Styles.Render("~/Content/css")
@Code
For Each item In Model
@:<li>@Html.ActionLink(item.Name, item.Action, item.Controller)</li>
Next
End Code
这是在_layout中调用的控制器中调用的子操作:
Public Class _MenuBarController
Inherits System.Web.Mvc.Controller
<ChildActionOnly>
Function Menu() As PartialViewResult
Dim filePath = Server.MapPath("~/bin/Conf/MenuData.xml")
Dim menuBar As List(Of MenuItem) = MenuResolution.GetStandardMenu(filePath)
Return PartialView("~/Views/Shared/_MenuBar.vbhtml", menuBar)
End Function
End Class