0

提前感谢您的帮助。我对 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
4

0 回答 0