我正在尝试使用自定义助手,使用Is there an ASP.NET MVC HtmlHelper for image links?中的示例创建链接。
假设这段代码实际起作用,我不确定问题是什么。我是匿名类型和MVC的新手,所以假设我错过了一些明显的东西。
我的代码如下:
public static string ImageLink(this HtmlHelper htmlHelper, string imgSrc, string alt, string actionName, string controllerName, object imgHtmlAttributes)
{
UrlHelper urlHelper = ((Controller)htmlHelper.ViewContext.Controller).Url;
TagBuilder imgTag = new TagBuilder("img");
imgTag.MergeAttribute("src", imgSrc);
imgTag.MergeAttributes((IDictionary<string, string>)imgHtmlAttributes, true);
string url = urlHelper.Action(actionName, controllerName);
TagBuilder imglink = new TagBuilder("a");
imglink.MergeAttribute("href", url);
imglink.InnerHtml = imgTag.ToString();
return imglink.ToString();
}
视图代码是这样的:
<%= Html.ImageLink("../../imgs/details_icon", "View details", "Details", "Tanque", new { height = "5", width = "5" }) %>
例外:
Unable to cast object of type '<>f__AnonymousType0`2[System.String,System.String]' to type 'System.Collections.Generic.IDictionary`2[System.String,System.String]'.
答案 0 :(得分:8)
内部MVC使用RouteValueDictionary将对象强制转换为Dictionnary,因此只需更改
即可imgTag.MergeAttributes((IDictionary<string, string>)imgHtmlAttributes, true);
到
imgTag.MergeAttributes(new RouteValueDictionary(imgHtmlAttributes), true);