我创建了一个htmlhelper扩展,以减少创建表单时重复标记的数量:
public static MvcHtmlString RenderField<TModel,TValue>(this HtmlHelper<TModel> htmlHelper,Expression<Func<TModel,TValue>> expression) { return htmlHelper.displayFor(expression,"formfield"); }
想法是在我的观点中我可以写@ Html.RenderField(x => x.MyFieldName),它将打印标签和字段的内容,并且已经有适当的div标签.
在displaytemplates文件夹中,我创建了包含以下内容的formfield.cshtml:
<div class="display-group"> <div class="display-label"> @Html.LabelFor(x => x) </div> <div class="display-field"> @Html.displayFor(x => x) </div> </div>
不幸的是,似乎没有可能在显示模板中嵌套displayFor(它不会渲染任何东西).我不想只使用@Model,因为那样我就不会得到布尔值的复选框,日期的日历控件等.
这有什么好办法吗?
解决方法
你不能嵌套displayFor().见:
Is it possible to use DisplayFor() from within the EditorFor template control
你考虑过Html.displayForModel()吗?可在此处找到说明和示例代码:http://msdn.microsoft.com/en-us/library/ee430907(v=VS.100).aspx