如何不使用Sitecore Glass Mapper呈现链接标题

时间:2014-08-06 13:59:44

标签: c# sitecore glass-mapper

我使用GlassMapper的这种方法渲染Sitecore Link:

        <li>
            <%=GlassHtml.RenderLink(icon, x => x.Link, null, true, string.Empty) %>
        </li>

但不想在编辑模式中显示链接描述

所以即使填充了链接描述,它也会像这样呈现:

<a href='https://url.com' class='icon-facebook' target='_blank' ></a>

而不是这样:

<a href='https://url.com' class='icon-facebook' target='_blank' >Link description</a>

所以我想知道GlassHtml.RenderLink是否可以覆盖这种用途? TNX

1 个答案:

答案 0 :(得分:3)

其中一个选项是在页面处于编辑模式时为内容添加空白。它不会使链接为空,但它不会显示它的描述。

<% if (IsInEditingMode)
       { %>
      <li>
                <%=GlassHtml.RenderLink(icon, x => x.Link, isEditable: true, contents: " ") %>
            </li>
    <% } else {%>

          <li>
                <%=GlassHtml.RenderLink(icon, x => x.Link, null, true, string.Empty) %>
            </li>
    <%}%>

另一个选择是编写自己的玻璃扩展名。 (有关如何执行此类操作的更多信息,您可以看到此主题 - Glass Mapper RenderLink link description - default text if empty

Glass.Mapper是开源的,您可以在这里看到渲染链接的实际工作方式:

https://github.com/mikeedwards83/Glass.Mapper/blob/master/Source/Glass.Mapper.Sc/GlassHtml.cs(该方法从第297行开始)。

要扩展它,你需要这样的东西

public virtual string RenderEmptyLinkInEditing<T>(T model, Expression<Func<T, object>> field, object attributes = null, bool isEditable = false, string contents = null)
        {
            NameValueCollection attrs = null;

            if (attributes is NameValueCollection)
            {
                attrs = attributes as NameValueCollection;
            }
            else
            {
                attrs = Utilities.GetPropertiesCollection(attributes, true);

            }

            var sb = new StringBuilder();
            var writer = new StringWriter(sb);

            RenderingResult result = null;
            if (IsInEditingMode && isEditable)
            {

                if (contents.IsNotNullOrEmpty())
                {
                    attrs.Add("haschildren", "true");
                }

                result = MakeEditable(
                    field,
                    null, 
                    model,  
                    attrs,
                    _context, SitecoreContext.Database, writer);

              //  if (contents.IsNotNullOrEmpty())
              //  {
              //      sb.Append(contents);
              //  }
            }
            else
            {
                result = BeginRenderLink(
                        field.Compile().Invoke(model) as Fields.Link, attrs, contents, writer
                    );
            }

            result.Dispose();
            writer.Flush();
            writer.Close();
            return sb.ToString();

        }