TagBuilder.MergeAttributes не работает - PullRequest
6 голосов
/ 22 июня 2011

Я создаю своего собственного помощника в MVC. Но пользовательские атрибуты не добавляются в HTML:

Helper

public static MvcHtmlString MenuItem(this HtmlHelper helper, string linkText, string actionName, string controllerName, object htmlAttributes)
{
    var currentControllerName = (string)helper.ViewContext.RouteData.Values["controller"];
    var currentActionName = (string)helper.ViewContext.RouteData.Values["action"];

    var builder = new TagBuilder("li");

    if (currentControllerName.Equals(controllerName, StringComparison.CurrentCultureIgnoreCase)
        && currentActionName.Equals(actionName, StringComparison.CurrentCultureIgnoreCase))
        builder.AddCssClass("selected");

    if (htmlAttributes != null)
    {
        var attributes = new RouteValueDictionary(htmlAttributes);
        builder.MergeAttributes(attributes, false); //DONT WORK!!!
    }

    builder.InnerHtml = helper.ActionLink(linkText, actionName, controllerName).ToHtmlString();
    return MvcHtmlString.Create(builder.ToString(TagRenderMode.Normal));
}

CSHTML

@Html.MenuItem("nossa igreja2", "Index", "Home", new { @class = "gradient-top" })

Окончательный результат (HTML)

<li class="selected"><a href="/">nossa igreja2</a></li>

Обратите внимание, что он не добавил класс gradient-top, который я упомянул во вспомогательном вызове.

Ответы [ 2 ]

18 голосов
/ 10 августа 2011

При вызове MergeAttributes с replaceExisting, установленным на false, он просто добавляет атрибуты, которые в данный момент отсутствуют в словаре атрибутов.Он не объединяет и не объединяет значения отдельных атрибутов.

Я считаю, что перемещение вашего вызова на

builder.AddCssClass("selected");

после

builder.MergeAttributes(attributes, false);

решит вашу проблему.

0 голосов
/ 06 февраля 2014

Я написал этот метод расширения, который делает то, что я думал MergeAttributes должен был сделать (но при проверке исходного кода он просто пропускает существующие атрибуты):

public static class TagBuilderExtensions
{
    public static void TrueMergeAttributes(this TagBuilder tagBuilder, IDictionary<string, object> attributes)
    {
        foreach (var attribute in attributes)
        {
            string currentValue;
            string newValue = attribute.Value.ToString();

            if (tagBuilder.Attributes.TryGetValue(attribute.Key, out currentValue))
            {
                newValue = currentValue + " " + newValue;
            }

            tagBuilder.Attributes[attribute.Key] = newValue;
        }
    }
}
...