42

我正在寻找一种用更少的代码行(可能是 5 行)编写以下代码的方法。我想我可以做与所选类相同的事情,但这种剃刀语法看起来并不漂亮。

<ul>
@foreach (var mi in Model.MenuItems) {
  <li@(mi.Selected?" class=\"selected\"":null)>
  @if (string.IsNullOrEmpty(mi.Title)) {
    <a href="@mi.Href">@mi.Text</a>
  } else {
    <a href="@mi.Href" title="@mi.Title">@mi.Text</a>
  }
  </li>
}
</ul>
4

8 回答 8

56

已在 ASP.NET MVC 4 中修复

http://weblogs.asp.net/jgalloway/archive/2012/02/16/asp-net-4-beta-released.aspx

条件属性渲染

如果您有一个可能为空的属性,过去您需要进行空检查以避免写出空属性,如下所示:

<div @{if (myClass != null) { <text>class="@myClass"</text> } }>Content</div>

现在 Razor 能够自动处理这个问题,所以你可以写出属性。如果为 null,则不写入该属性:

<div class="@myClass">Content</div>

所以如果@myClass 为空,输出就是这样:

<div>Content</div>
于 2012-03-01T21:29:20.710 回答
41

我想出了一个可链接的 HtmlAttribute 类和一些 Html 扩展方法来允许下面的 Razor 语法:

<ul> 
    @foreach (var mi in items) { 
    <li @Html.Css("selected", mi.Selected)> 
        <a href="@mi.Href" @Html.Attr("title", mi.Title)>@mi.Text</a> 
    </li> 
    } 
</ul> 

这是 HtmlAttribute 类:

public class HtmlAttribute : IHtmlString     
{
    private string _InternalValue = String.Empty;
    private string _Seperator;

    public string Name { get; set; }
    public string Value { get; set; }
    public bool Condition { get; set; }

    public HtmlAttribute(string name)
        : this(name, null)
    {
    }

    public HtmlAttribute( string name, string seperator )
    {
        Name = name;
        _Seperator = seperator ?? " ";
    }

    public HtmlAttribute Add(string value)
    {
        return Add(value, true);
    }

    public HtmlAttribute Add(string value, bool condition)
    {
        if (!String.IsNullOrWhiteSpace(value) && condition)
            _InternalValue += value + _Seperator;

        return this;
    }

    public string ToHtmlString()
    {
        if (!String.IsNullOrWhiteSpace(_InternalValue))
            _InternalValue = String.Format("{0}=\"{1}\"", Name, _InternalValue.Substring(0, _InternalValue.Length - _Seperator.Length));
        return _InternalValue;
    }
}

额外信息:“分隔符”用于将属性的多个值链接在一起。这对于多个 css 类名(使用空格)或可能使用 String.Empty 来构建依赖于多个条件的值(通过使用 .Add() 方法)很有用

以下是 Html Extension 辅助方法:

public static class Extensions
{
    public static HtmlAttribute Css(this HtmlHelper html, string value)
    {
        return Css(html, value, true);
    }

    public static HtmlAttribute Css(this HtmlHelper html, string value, bool condition)
    {
        return Css(html, null, value, condition);
    }

    public static HtmlAttribute Css(this HtmlHelper html, string seperator, string value, bool condition)
    {
        return new HtmlAttribute("class", seperator).Add(value, condition);
    }

    public static HtmlAttribute Attr(this HtmlHelper html, string name, string value)
    {
        return Attr(html, name, value, true);
    }

    public static HtmlAttribute Attr(this HtmlHelper html, string name, string value, bool condition)
    {
        return Attr(html, name, null, value, condition);
    }

    public static HtmlAttribute Attr(this HtmlHelper html, string name, string seperator, string value, bool condition)
    {
        return new HtmlAttribute(name, seperator).Add(value, condition);
    }
}

让我知道它们是否有用。

谢谢,

于 2010-11-20T12:08:59.733 回答
11
<ul>
@foreach (var mi in Model.MenuItems) {
    <li@(mi.Selected?" class=\"selected\"":null)>
        <a href="@mi.Href" @{if(!string.IsNullOrEmpty(mi.Title)) { <text>title="@mi.Title"</text>} }>@mi.Text</a>
    </li>
}
</ul>

我还没有测试它,但它解析正确。

于 2010-09-27T01:50:49.037 回答
7

这将是自定义 HTML 助手的一个很好的候选者:

public static class HtmlExtensions
{
    public static MvcHtmlString MenuItem(this HtmlHelper htmlHelper, MenuItem mi)
    {
        var li = new TagBuilder("li");
        if (mi.Selected)
        {
            li.AddCssClass("selected");
        }
        var a = new TagBuilder("a");
        a.MergeAttribute("href", mi.Href);
        if (!string.IsNullOrEmpty(mi.Title))
        {
            a.MergeAttribute("title", mi.Title);
        }
        a.SetInnerText(mi.Text);
        return MvcHtmlString.Create(li.ToString());
    }
}

在您看来:

<ul>
@foreach (var mi in Model.MenuItems) {
    @Html.MenuItem(mi)
}
</ul>

或者使用 DisplayTemplates 你甚至不需要写一个循环:

<ul>
    @Html.DisplayFor(x => x.MenuItems)
</ul>
于 2010-09-27T06:27:08.910 回答
4
<ul>
@foreach (var mi in Model.MenuItems) {
  <li@(Html.Raw((mi.Selected ? " class=\"selected\"" : null))>
    <a href="@mi.Href">@mi.Text</a>
  </li>
}
</ul>
于 2011-03-30T19:02:37.710 回答
3

class如果值为,则 Razor 不会呈现属性null

<a href="#nolink" class="@(categoryId == null ? "submenu-active": null)">All</a>
于 2013-09-26T09:50:59.563 回答
1

对于多个类的情况,我使用这个简单的扩展方法:

public static MvcHtmlString If(this string text, bool condition) {
    return new MvcHtmlString(condition ? text : string.Empty);
}

在视图中:

<div class="menuitem @("active".If(Model.Active))">
于 2014-11-12T14:05:05.443 回答
-1

它真的非常简单和干净:

<p @(cssClass != null) ? { class="@cssClass" }> Stuff and whatnot... </p>
于 2011-04-21T18:17:59.020 回答