借用http://weblogs.asp.net/imranbaloch/archive/2010/07/03/asp-net-mvc-labelfor-helper-with-htmlattributes.aspx,我創建了一個擴展方法來執行此操作。它帶有始終安全的跨度標籤輸出。你也可以修改這個來完全省略span標籤(消除兩個重載,因爲在這種情況下你永遠不能獲取屬性)。
與此內容創建一個類時,請確保您的網頁導入該類的命名空間,然後在視圖中使用這個喜歡Html.DisplayNameFor(x => x.Name)
public static class DisplayNameForHelper
{
public static MvcHtmlString DisplayNameFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Func<TModel, TValue>> expression)
{
return DisplayNameFor(html, expression, new RouteValueDictionary());
}
public static MvcHtmlString DisplayNameFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Func<TModel, TValue>> expression, object htmlAttributes)
{
return DisplayNameFor(html, expression, new RouteValueDictionary(htmlAttributes));
}
public static MvcHtmlString DisplayNameFor<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("span");
tag.MergeAttributes(htmlAttributes);
tag.SetInnerText(labelText);
return MvcHtmlString.Create(tag.ToString(TagRenderMode.Normal));
}
}
感謝達林!這就是我需要的。 – kseen