尝试在视图(MVC 应用程序)中使用 Html.EditorForModel 帮助程序时收到上述错误。这是视图的代码:
@model CodeFirst.Models.Person
@{
ViewBag.Title = "CreatePerson";
}
<h2>CreatePerson</h2>
@using (Html.BeginForm())
{
<fieldset>
<legend>Create person entry</legend>
@Html.EditorForModel()
</fieldset>
}
<div>
@Html.ActionLink("Back to List", "Index")
</div>
我试图使用对象类型的编辑器模板。这是模板
@inherits System.Web.Mvc.WebViewPage
@if (Model == null)
<span>@ViewData.ModelMetadata.NullDisplayText</span>
else
{
<table cellpadding="0" cellspacing="0" class="editor-table">
@foreach (var prop in ViewData
.ModelMetadata
.Properties
.Where(pm => pm.ShowForDisplay && !ViewData.TemplateInfo.Visited(pm)))
{
<tr>
<td>
<div class="editor-label">
@prop.GetDisplayName()
</div>
</td>
<td width="10px">@(prop.IsRequired ? "*" : "") </td>
<td>
<div class="editor-field">
<span>@Html.Editor(prop.PropertyName)</span>
<span>@Html.ValidationMessage(prop.PropertyName, "*")</span>
</div>
</td>
</tr>
}
</table>
}
我在一本 MVC 书中找到了这个示例。它为必填字段添加了一个“*”字符。尝试访问视图时收到上述错误。如果您知道为什么会出现此错误,请告诉我。