1

我们有一个带有以下签名的自定义 HTML 助手。

public static MvcHtmlString TextBoxFor<TModel,
    TProperty>(this HtmlHelper<TModel> helper,
    Expression<Func<TModel, TProperty>> property)
{
    var htmlAttributes = new Dictionary<string, object>();

    // ....

    return helper.TextBoxFor(property, htmlAttributes);
}

我想在placeholder这里实现属性,应该设置为这个控件的标签。标签可以是字符串常量,也可以是为属性的[Display]属性指定的字符串。

我有什么方法可以从这个辅助函数中获取这个标签吗?

4

1 回答 1

0

这似乎有效:

ModelMetadata metadata = ModelMetadata.FromLambdaExpression(property, helper.ViewData);
string htmlFieldName = ExpressionHelper.GetExpressionText(property);
string labelText = metadata.DisplayName ?? metadata.PropertyName ?? htmlFieldName.Split('.').Last();
if (!String.IsNullOrWhiteSpace(labelText))
    // labelText contains the label
于 2012-06-05T18:47:14.540 回答