MVC - 将IDictionary或RouteValueDictionary转换为对象htmlAttributes

时间:2013-11-19 15:33:59

标签: c# .net asp.net-mvc

我创建了一个HTML Helper Extension,它在MVC中调用了编辑器模板部分视图(MyView)。

我通过对象htmlAttributes参数将其他HTML属性传递给HTML Helper Extension。在HTML Helper扩展中,htmlAttributes被转换为RouteValueCollection(可以在这里使用IDictionary)并存储在ModelProperty对象中:

public static MvcHtmlString TextBoxFor(this HtmlHelper html, ModelProperty prop, object htmlAttributes)
{
    prop.ControlHtmlAttributes = HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes);
    return PartialExtensions.Partial(html, "MyView", prop);
}

在'MyView'部分视图中我想渲染控件并使用传递的HTML属性,所以我调用:

Html.TextArea(Model.ControlName, Model.Value, Model.ControlHtmlAttributes);

如果这个dosnt工作,因为第3个参数应该是'object htmlAttributes'如何将Model.ControlHtmlAttributes转换为对象htmlAttibutes?

2 个答案:

答案 0 :(得分:9)

无论如何要回答你的问题:

    public static object ToAnonymousObject(this IDictionary<string, object> @this)
    {
        var expandoObject = new ExpandoObject();
        var expandoDictionary = (IDictionary<string, object>) expandoObject;

        foreach (var keyValuePair in @this)
        {
            expandoDictionary.Add(keyValuePair);
        }
        return expandoObject;
    }

答案 1 :(得分:-1)

道歉所有 - 这正常工作我在Html.TextArea上使用了错误的重载,因此它应该读取第二个参数不是对象的位置(就像原始的那样),但应该是一个字符串:

Html.TextArea(Model.ControlName, Model.AsString(), Model.ControlHtmlAttributes);