我有一个带有列表元素的模型。我在运行时创建我的页面,使用“foreach”循环在页面中插入所有列表元素。我还有一个要验证的字符串值(model.trayCapacity),检查它是否不为空:
[Required(ErrorMessage = "*")]
public string trayCapacity{ get; set; }
public IList<Separatore> SeparatoriLongitudinali{ get; set; }
这是 .cshtml 代码:
@using (Html.BeginForm("Optional", "Config", FormMethod.Post, new { id = "storeDataForm" }))
{
@Html.ValidationSummary(true)
foreach (Separatore sepLong in Model.SeparatoriLongitudinali)
{
@Html.TextBoxFor(x => sepLong.Quantity)
}
<table>
<tr class="webgrid-row-style">
<td>Tray Capacity:</td>
<td>@Html.TextBoxFor(model => model.trayCapacity)</td>
<td>@Html.ValidationMessageFor(model => model.trayCapacity)</td>
</tr>
</table>
<div align="right">
<input type="submit" value="buttonNext" />
</div>
}
有SyntaxError: JSON.parse: unexpected character, in jquery.js (version 1.9.1)
, 页面继续而不检查值。
ValidationSummary 仅在我切断“foreach”代码时才有效。这是为什么?