扩展方法中的HtmlAttributes

时间:2013-11-19 22:54:07

标签: c# asp.net-mvc razor extension-methods asp.net-mvc-5

我正在使用MVC 5而我正在尝试编写一些Bootstrap扩展方法。我的目标是使用Html.ActionLink“覆盖”Html.BootstrapLinkButton方法。 BootstrapLinkButton方法应生成自动附加的css类"btn btn-default"的链接。 到目前为止我的代码:

public static MvcHtmlString BootstrapLinkButton(this HtmlHelper htmlHelper, 
    string linkText,string actionName, string controllerName, 
    object routeValues = null, object htmlAttributes = null)
    {
        var attributes = 
            HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes);

        if (attributes.ContainsKey("class"))
        {
            object value;
            attributes.TryGetValue("class", out value);
            value = (value as string) + " btn btn-default";
            attributes["class"] = value;
        }
        else
        {
            attributes["class"] = "btn btn-default";
        }

        return htmlHelper.ActionLink(
            linkText, actionName, controllerName, routeValues, 
            new Dictionary<string, object>(attributes));
    }

在HTML中给出了以下结果:

<a comparer="System.Collections.Generic.GenericEqualityComparer`1[System.String]"
   count="3"
   keys="System.Collections.Generic.Dictionary`2
         +KeyCollection[System.String,System.Object]"    
   values="System.Collections.Generic.Dictionary`2
           +ValueCollection[System.String,System.Object]" 
   href="/test/test/">
     Test
</a>

我搜索了互联网,但似乎没有解决这个问题。有谁知道解决这个问题的神奇代码?

2 个答案:

答案 0 :(得分:2)

如果我的解决方案可以帮助任何人,那么它就是:

    public static MvcHtmlString BootstrapLinkButton(this HtmlHelper htmlHelper, 
        string linkText, 
        string actionName, 
        string controllerName = null, 
        object routeValues = null, 
        object htmlAttributes = null,
        string btnStyle = "default")
    {
        var attributes = HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes);
        controllerName = 
            controllerName ?? 
            HttpContext.Current.Request.RequestContext.RouteData.Values["controller"].ToString();

        if (attributes.ContainsKey("class"))
        {
            object value;
            attributes.TryGetValue("class", out value);
            value = string.Format("{0} btn btn-{1}", (value as string), btnStyle);
            attributes["class"] = value;
        }
        else
        {
            attributes["class"] = string.Format("btn btn-{0}", btnStyle);
        }

        return htmlHelper.ActionLink(
            linkText, 
            actionName, 
            controllerName, 
            new RouteValueDictionary(routeValues), 
            new Dictionary<string, object>(attributes));
    }
}

答案 1 :(得分:1)

它已在TwitterBootstrapMVC

中实施

以下是relevant code

很可能是您的代码失败的原因是因为htmlHelper.ActionLink(...)方法混淆了需要使用哪个重载。它没有超载 string, string, object, Dictionary,这是你想传递给它的。