.NET MVC-如何为Html.LabelFor分配类?


69

这段代码

<%= Html.LabelFor(model => model.Name) %>

产生这个

<label for="Name">Name</label>

但是我想要这个

<label for="Name" class="myLabel">Name</label>

你是怎样做的?

Answers:


7

好的,查看此方法的源代码(System.Web.Mvc.Html.LabelExtensions.cs),似乎没有办法使用ASP.NET MVC 2中的HtmlHelper来做到这一点。是要创建自己的HtmlHelper或对此特定标签执行以下操作:

<label for="Name" class="myLabel"><%= Model.Name %></label>

它不起作用对象引用未设置为对象的实例。但这也许是另一个错误。我只是MVC的新手。因此,没有办法将CSS类放入Html.LabelFor,好的,谢谢Richard!
Aximili 2010年

执行Richard的建议,只需创建您自己的LabelFor()的HtmlHelper重载。如果不确定如何构建表达式签名,则可以复制LabelFor()源代码的语法。
内森·泰勒

2
嗨,内森,您如何为LabelFor创建重载?或者我可以从哪里复制?谢谢,您可以将其发布为新答案。
Aximili

只是,我知道为什么Model.Name不起作用。这是因为我要添加一个新项目,所以Model(该项目)仍然为null。
Aximili

140

遗憾的是,在MVC 3中,Html.LabelFor()方法没有允许直接类声明的方法签名。但是,MVC 4添加了两个接受htmlAttributes匿名对象的重载。

与所有HtmlHelpers一样,重要的是要记住C#编译器将其class视为保留字。

因此,如果在class属性前使用@,则可以解决此问题,即:

@Html.LabelFor(model => model.PhysicalPostcode, new { @class= "SmallInput" })

@符号使“类”成为传递的文字。


17
为什么不更支持?它完美地工作!(在MVC4,至少)
肖恩汉利

5
我在MVC 3中尝试过,它似乎不喜欢它……也许是MVC4 FTW!
马修·莱顿

这正是我要的东西。我正在使用MVC4 btw :)
reaper_unique 2012年

7
也许编辑此问题/答案以指示MVC4已解决问题
Blue Toque

此语法也适用@Html.Label于Razor Web Pages中的帮助程序。
2014年

66

LabelFor的重载:

public static class NewLabelExtensions
{
    public static MvcHtmlString LabelFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Func<TModel, TValue>> expression, object htmlAttributes)
    {
        return LabelFor(html, expression, new RouteValueDictionary(htmlAttributes));
    }
    public static MvcHtmlString LabelFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Func<TModel, TValue>> expression, IDictionary<string, object> htmlAttributes)
    {
        ModelMetadata metadata = ModelMetadata.FromLambdaExpression(expression, html.ViewData);
        string htmlFieldName = ExpressionHelper.GetExpressionText(expression);
        string labelText = metadata.DisplayName ?? metadata.PropertyName ?? htmlFieldName.Split('.').Last();
        if (String.IsNullOrEmpty(labelText))
        {
            return MvcHtmlString.Empty;
        }

        TagBuilder tag = new TagBuilder("label");
        tag.MergeAttributes(htmlAttributes);
        tag.Attributes.Add("for", html.ViewContext.ViewData.TemplateInfo.GetFullHtmlFieldId(htmlFieldName));
        tag.SetInnerText(labelText);
        return MvcHtmlString.Create(tag.ToString(TagRenderMode.Normal));
    }
}

http://weblogs.asp.net/imranbaloch/archive/2010/07/03/asp-net-mvc-labelfor-helper-with-htmlattributes.aspx


就像内森·泰勒(Nathan Taylor)所说的那样,对于阿克西米利
弗拉基米尔·史密特
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.