ServiceStack.Html自定义标签扩展

时间:2014-02-17 15:07:17

标签: servicestack servicestack-razor

我一直在努力研究如何将标签扩展类注册到ServiceStack.Html / Razor项目中。我正在使用“独立的,自托管的HttpListener”选项,但我无法确定如何注册或使用新的@Html扩展名以在剃刀页面中使用。

namespace Tribe.Guru.SelfHost
{
    public static class LabelExtensions
    {
        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));
        }
    }
}

任何帮助都将不胜感激,因为我找不到任何文档,无法让它工作。

1 个答案:

答案 0 :(得分:1)

您还需要在Web.config razor配置中添加任何名称空间,例如:

<system.web.webPages.razor>
<host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<pages pageBaseType="ServiceStack.Razor.ViewPage">
  <namespaces>
    <add namespace="ServiceStack"/>
    <add namespace="ServiceStack.Html"/>
    <add namespace="ServiceStack.Razor"/>
    <add namespace="ServiceStack.Text"/>
    <add namespace="ServiceStack.OrmLite"/>
    <add namespace="Tribe.Guru.SelfHost"/>
  </namespaces>
</pages>
</system.web.webPages.razor>