我已经为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"})
这是什么诀窍?
答案 0 :(得分:2)
您可以使用以下代码提取它们:
var attributes = (IDictionary<string, object>) HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes)
img.MergeAttributes<string, object>(attributes, replaceExisting:true);
希望这有帮助。