【发布时间】:2012-12-19 17:28:48
【问题描述】:
我有一个模型包含一个没有 [Required] 属性的布尔值
public bool IsOptedIn { get; set; }
我已按如下方式覆盖 Object.cshtml 并使用 @Html.EditorForModel() 生成我的表单
@{
var properties = ViewData.ModelMetadata.Properties
.Where(prop => prop.ShowForEdit && !ViewData.TemplateInfo.Visited(prop));
}
@foreach (var prop in properties)
{
var hasModelStateError = ViewContext.ViewData.ModelState.Any(m => m.Key == prop.PropertyName)
&& ViewContext.ViewData.ModelState[prop.PropertyName].Errors != null
&& ViewContext.ViewData.ModelState[prop.PropertyName].Errors.Count > 0;
<div class="control-group
@(hasModelStateError ? "error" : string.Empty)
@prop.PropertyName.ToLower()">
@if (prop.IsReadOnly)
{
<b>@prop.GetDisplayName()</b>
@Html.Display(prop.PropertyName)
}
else if (prop.HideSurroundingHtml)
{
@Html.Editor(prop.PropertyName)
}
else
{
<label class="control-label">
@prop.GetDisplayName()
@if (prop.IsRequired)
{
<span class="required">*</span>
}
</label>
<div class="controls">
@Html.Editor(prop.PropertyName)
@if (hasModelStateError)
{
<p class="alert alert-block">
@Html.ValidationMessage(prop.PropertyName)
</p>
}
@if (!string.IsNullOrWhiteSpace(prop.Description))
{
<p class="help-block">
@prop.Description
</p>
}
</div>
}
</div>
}
我发现我的模型中的布尔值总是按要求标记。为什么会这样?我该如何阻止它发生?
【问题讨论】:
-
bool 不能为空。它必须是真或假。所以这就是它需要的原因。尝试使用可为空的 bool ( bool? ) 而不是常规 bool
标签: asp.net asp.net-mvc asp.net-mvc-4 data-annotations