如何扩展MVC3 Label和LabelFor HTML帮助器?

时间:2012-03-27 08:05:08

标签: asp.net-mvc-3 extension-methods

Html.LabelHtml.LabelFor辅助方法不像大多数其他帮助程序那样支持htmlAttributes参数。我想设置class。像这样:

Html.LabelFor(model => model.Name, new { @class = "control-label" })

是否有 easy 扩展Label / LabelFor 的方法,而无需复制和扩展这些方法的ILSpy disasm输出?

2 个答案:

答案 0 :(得分:25)

您可以通过创建自己的LabelFor来轻松扩展标签:

这样的事情应该做你需要的事情

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));
}

<强>更新 要使用刚刚在项目中创建的扩展方法,请在Views\web.config

中添加此行
<pages>
  <namespaces>
    <add namespace="System.Web.Helpers" />
    <add namespace="System.Web.Mvc" />
    <add namespace="System.Web.Mvc.Ajax" />
    <add namespace="System.Web.Mvc.Html" />
    <add namespace="System.Web.Routing" />
    <add namespace="System.Web.WebPages" />
    <add namespace="MyProject.Helpers" />   <-- my extension

    ...

 </namespaces>
</pages>

答案 1 :(得分:6)

public static class LabelExtensions
{
    public static IHtmlString LabelFor<TModel, TProperty>(
        this HtmlHelper<TModel> htmlHelper,
        Expression<Func<TModel, TProperty>> expression,
        string labelText,
        object htmlAttributes
    )
    {
        var metadata = ModelMetadata.FromLambdaExpression<TModel, TProperty>(expression, htmlHelper.ViewData);
        var htmlFieldName = ExpressionHelper.GetExpressionText(expression);
        return LabelHelper(htmlHelper, metadata, htmlFieldName, labelText, htmlAttributes);
    }

    public static IHtmlString Label(this HtmlHelper htmlHelper, string expression, string labelText, object htmlAttributes)
    {
        var metadata = ModelMetadata.FromStringExpression(expression, htmlHelper.ViewData);
        return LabelHelper(htmlHelper, metadata, expression, labelText, htmlAttributes);
    }

    private static IHtmlString LabelHelper(HtmlHelper html, ModelMetadata metadata, string htmlFieldName, string labelText, object htmlAttributes)
    {
        string str = labelText ?? (metadata.DisplayName ?? (metadata.PropertyName ?? htmlFieldName.Split(new char[] { '.' }).Last<string>()));
        if (string.IsNullOrEmpty(str))
        {
            return MvcHtmlString.Empty;
        }
        TagBuilder tagBuilder = new TagBuilder("label");
        tagBuilder.Attributes.Add("for", TagBuilder.CreateSanitizedId(html.ViewContext.ViewData.TemplateInfo.GetFullHtmlFieldName(htmlFieldName)));
        var attributes = new RouteValueDictionary(htmlAttributes);
        tagBuilder.MergeAttributes(attributes);
        tagBuilder.SetInnerText(str);
        return new HtmlString(tagBuilder.ToString(TagRenderMode.Normal));
    }
}

然后:

@Html.LabelFor(x => x.SomeProperty, null, new { @class = "foo" })

或:

@Html.Label("SomeProperty", null, new { @class = "foo" })