asp.net-mvc – 在显示模板中使用DisplayFor

我创建了一个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

相关文章

### 创建一个gRPC服务项目(grpc服务端)和一个 webapi项目(...
一、SiganlR 使用的协议类型 1.websocket即时通讯协议 2.Ser...
.Net 6 WebApi 项目 在Linux系统上 打包成Docker镜像,发布为...
一、 PD简介PowerDesigner 是一个集所有现代建模技术于一身的...
一、存储过程 存储过程就像数据库中运行的方法(函数) 优点:...
一、Ueditor的下载 1、百度编辑器下载地址:http://ueditor....