小编典典

如何在ASP.NET MVC中将“活动”类添加到Html.ActionLink

css

我正在尝试在MVC中向我的引导导航栏添加“活动”类,但是在编写时,以下内容未显示活动类:

<ul class="nav navbar-nav">
  <li>@Html.ActionLink("Home", "Index", "Home", null, new {@class="active"})</li>
  <li>@Html.ActionLink("About", "About", "Home")</li>
  <li>@Html.ActionLink("Contact", "Contact", "Home")</li>
</ul>

这可以解决看起来像格式正确的类,但是不起作用:

<a class="active" href="/">Home</a>

在Bootstrap文档中,它指出不应在导航栏中使用“a”标签,但是我认为以上是将类添加到Html.ActionLink的正确方法。我还有另一种(整洁)的方式可以做到这一点吗?


阅读 351

收藏
2020-05-16

共1个答案

小编典典

在Bootstrap中,active需要将类应用于<li>元素,而不是<a>

基于活动状态或不活动状态处理UI样式的方式与ASP.NETMVC的ActionLink帮助程序无关。这是遵循Bootstrap框架构建方式的正确解决方案。

<ul class="nav navbar-nav">
    <li class="active">@Html.ActionLink("Home", "Index", "Home")</li>
    <li>@Html.ActionLink("About", "About", "Home")</li>
    <li>@Html.ActionLink("Contact", "Contact", "Home")</li>
</ul>

编辑:

由于您很可能会在多个页面上重复使用菜单,因此明智的是,有一种方法可以根据当前页面自动应用所选的类,而不是多次复制菜单并手动进行操作。

最简单的方法是简单地使用中包含的值ViewContext.RouteData,即ActionController值。我们可以在您当前拥有的基础上提供以下功能:

<ul class="nav navbar-nav">
    <li class="@(ViewContext.RouteData.Values["Action"].ToString() == "Index" ? "active" : "")">@Html.ActionLink("Home", "Index", "Home")</li>
    <li class="@(ViewContext.RouteData.Values["Action"].ToString() == "About" ? "active" : "")">@Html.ActionLink("About", "About", "Home")</li>
    <li class="@(ViewContext.RouteData.Values["Action"].ToString() == "Contact" ? "active" : "")">@Html.ActionLink("Contact", "Contact", "Home")</li>
</ul>

它不是很漂亮的代码,但是可以完成工作,并允许您根据需要将菜单提取到局部视图中。有多种方法可以使这种方法更加简洁,但是由于您刚刚入门,因此我将其保留下来。祝您学习ASP.NETMVC一切顺利!


后期编辑:

这个问题似乎有点流量,所以我想我会使用HtmlHelper扩展名提出一个更优雅的解决方案。

编辑03-24-2015:必须重写此方法,以允许多个动作和控制器触发选定的行为,以及当从子动作局部视图调用该方法时的处理,以为我会共享更新!

public static string IsSelected(this HtmlHelper html, string controllers = "", string actions = "", string cssClass = "selected")
{
    ViewContext viewContext = html.ViewContext;
    bool isChildAction = viewContext.Controller.ControllerContext.IsChildAction;

    if (isChildAction)
        viewContext = html.ViewContext.ParentActionViewContext;

    RouteValueDictionary routeValues = viewContext.RouteData.Values;
    string currentAction = routeValues["action"].ToString();
    string currentController = routeValues["controller"].ToString();

    if (String.IsNullOrEmpty(actions))
        actions = currentAction;

    if (String.IsNullOrEmpty(controllers))
        controllers = currentController;

    string[] acceptedActions = actions.Trim().Split(',').Distinct().ToArray();
    string[] acceptedControllers = controllers.Trim().Split(',').Distinct().ToArray();

    return acceptedActions.Contains(currentAction) && acceptedControllers.Contains(currentController) ?
        cssClass : String.Empty;
}

适用于.NET Core:

public static string IsSelected(this IHtmlHelper htmlHelper, string controllers, string actions, string cssClass = "selected")
{
    string currentAction = htmlHelper.ViewContext.RouteData.Values["action"] as string;
    string currentController = htmlHelper.ViewContext.RouteData.Values["controller"] as string;

    IEnumerable<string> acceptedActions = (actions ?? currentAction).Split(',');
    IEnumerable<string> acceptedControllers = (controllers ?? currentController).Split(',');

    return acceptedActions.Contains(currentAction) && acceptedControllers.Contains(currentController) ?
        cssClass : String.Empty;
}

用法示例:

<ul>
    <li class="@Html.IsSelected(actions: "Home", controllers: "Default")">
        <a href="@Url.Action("Home", "Default")">Home</a>
    </li>
    <li class="@Html.IsSelected(actions: "List,Detail", controllers: "Default")">
        <a href="@Url.Action("List", "Default")">List</a>
    </li>
</ul>
2020-05-16