我已经覆盖了默认的编辑器模板 (Object.ascx) 以生成遵循 Twitter Bootstrap 指南 ( http://twitter.github.io/bootstrap/base-css.html#forms ) 的表单 (body) HTML 执行通过 Html.EditorForModel()。
@if (ViewData.TemplateInfo.TemplateDepth > 1)
{
@(Model == null ? ViewData.ModelMetadata.NullDisplayText : ViewData.ModelMetadata.SimpleDisplayText)
}
else
{
foreach (var property in ViewData.ModelMetadata.Properties.Where(m => m.ShowForEdit @*&& m.ModelType != typeof (System.Data.EntityState)*@ && !m.IsComplexType && !ViewData.TemplateInfo.Visited(m)))
{
if (property.HideSurroundingHtml)
{
@Html.Editor(property.PropertyName)
}
else
{
<div class="control-group @(!ViewData.ModelState.IsValidField(property.PropertyName) ? "error" : ViewData.ModelState.ContainsKey(property.PropertyName) ? "success" : "" )">
@if (!string.IsNullOrEmpty(Html.Label(property.PropertyName).ToHtmlString()))
{
@Html.Label(property.GetDisplayName() + (property.IsRequired ? " *" : ""), new { @class = "control-label" })
}
<div class="controls">
@Html.Editor(property.PropertyName)
@Html.ValidationMessage(property.PropertyName, "*", new { @class = "help-inline" })
</div>
</div>
}
}
}
除非我想调整表单(例如更改排序或添加字段集),否则这很有效。我基本上想将上述代码的一部分分离到另一个编辑器模板中,这导致了 Property.ascx。这将为给定属性呈现标签、输入和验证消息,通过 Html.Editor("{PropertyName"}) 或 Html.EditorFor(m => m.{PropertyName}) 执行。
<div class="control-group @(!ViewData.ModelState.IsValidField(ViewData.ModelMetadata.PropertyName) ? "error" : ViewData.ModelState.ContainsKey(ViewData.ModelMetadata.PropertyName) ? "success" : "" )">
@if (!string.IsNullOrEmpty(Html.Label(ViewData.ModelMetadata.PropertyName).ToHtmlString()))
{
@Html.Label(ViewData.ModelMetadata.GetDisplayName() + (ViewData.ModelMetadata.IsRequired ? " *" : ""), new { @class = "control-label" })
}
<div class="controls">
@Html.Editor(ViewData.ModelMetadata.PropertyName)
@Html.ValidationMessage(ViewData.ModelMetadata.PropertyName, "*", new { @class = "help-inline" })
</div>
</div>
上述编辑器模板的问题是它没有为给定类型呈现正确的输入。因此,日期/时间属性只会呈现没有 type 属性的普通文本框。
我会以正确的方式解决这个问题吗?我应该使用标准的 HTML 帮助程序还是部分视图?如果是这样,我们如何处理通用性?