我希望从类型的MvcHtmlString
方法得到HtmlHelper.Display
结果,该方法与我当前的HtmlHelper
不同。下面的代码编译但总是返回一个空字符串。
public static MvcHtmlString GetPropertyValue(this HtmlHelper html, string property, object value)
{
var dictionary = new ViewDataDictionary();
dictionary.Add(property, value);
var fooHelper = new HtmlHelper<FooModel>(
new ViewContext(
html.ViewContext,
new WebFormView(html.ViewContext, "dummy"),
dictionary,
new TempDataDictionary(),
TextWriter.Null),
new ViewPage());
return fooHelper.Display(property);
}
所有辅助对象(ViewContexts
,ControllerContexts
,ViewDataDictionaries
等)对我来说都是一个黑盒子;我确定我错过了一些明显的东西。
如何让它发挥作用?
对于好奇:这将在我的应用程序的审计页面上使用。我有数据库中的属性名称(作为string
),旧值和新值。我也知道用于显示记录所代表的模型的实际实例的类型。我想重用模型类中的所有数据注释来显示HTML。
答案 0 :(得分:1)
我有点同样的问题。我想要的是:
我想创建自己的html扩展方法,它可以做一些事情而不是调用DisplayFor。在方法的显示中,我将传递我的不同模型对象。
我的解决方案
public static MvcHtmlString ShowProperty<T>(this HtmlHelper<T> helper, NewModel mynewModel){
return helper.DisplayFor(m => myNewModel, "TemplateName");
}
Mayby这适用于某个人