我正在尝试创建一个自定义 HTML 帮助程序扩展方法,该方法接受一个object htmlAttributes
然后获取传入的值(通过反射)并将它们添加到一个Dictionary<string, object>
. 不幸的是,尽管InputExtensions类中有一个将 aDictionary<string, object> htmlAttributes
作为参数的重载,但这不起作用。
问题是剃须刀引擎内部某处没有正确处理该字典(我猜......)。以下是它作为 HTML 输出的方式:
<input name="FirstName" id="FirstName" type="text" Values="System.Collections.Generic.Dictionary`2+ValueCollection[System.String,System.Object]" Keys="System.Collections.Generic.Dictionary`2+KeyCollection[System.String,System.Object]" Count="3" Comparer="System.Collections.Generic.GenericEqualityComparer`1[System.String]"/>
这是我的代码:
Dictionary<String, Object> attributes = new Dictionary<String, Object>();
attributes.Add("readonly", "readonly");
PropertyInfo[] properties = htmlAttributes.GetType().GetProperties();
foreach (PropertyInfo propertyInfo in properties)
{
if (propertyInfo.Name.Equals("class"))
{
attributes.Add("class", String.Format("{0} {1}", "readOnly", propertyInfo.GetValue(htmlAttributes, null)));
}
else
{
attributes.Add(propertyInfo.Name, propertyInfo.GetValue(htmlAttributes, null));
}
}
genericMethod = methodInfo.MakeGenericMethod(new[] { typeof(TModel), typeof(TProperty) });
result = genericMethod.Invoke(null, new object[] { helper, expression, (Dictionary<String, Object>)attributes }) as MvcHtmlString;
PS:这是对这个问题的跟进。