如何将自定义参数传递给MVC html.routeurl中的函数?

时间:2013-07-01 19:57:32

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

我已经为Html Helper库编写了一个小扩展方法,如下所示:

public static MvcHtmlString Image(this HtmlHelper htmlHelper, string url, string alt)
{
    var img = new TagBuilder("img");
    img.MergeAttribute("src", url);
    img.MergeAttribute("alt", alt);
    return new MvcHtmlString(img.ToString(TagRenderMode.SelfClosing));
}

我想更改它,以便我可以根据需要添加参数。类似的东西:

public static MvcHtmlString Image(this HtmlHelper htmlHelper, string url, object htmlParameters)
{
    var img = new TagBuilder("img");
    img.MergeAttribute("src", url);

    //Now I would like to extract the properties (and their values) from the object
    //and add them to img.

    return new MvcHtmlString(img.ToString(TagRenderMode.SelfClosing));
}

我希望将此功能设为通用,并使用自定义属性传递object,并将这些属性应用于img标记。就像我们将htmlParameters传递给ActionLink辅助方法一样。

@Html.ActionLink("link text", "actionName","controllerName", new {@class = "class"})

这是什么诀窍?

1 个答案:

答案 0 :(得分:2)

您可以使用以下代码提取它们:

var attributes = (IDictionary<string, object>) HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes)
img.MergeAttributes<string, object>(attributes, replaceExisting:true);
希望这有帮助。