我有一个具有 ID、Area、Debug、Error、Info、Warning、Fatal 属性的模型,我想将此对象的列表与 MVC 中的模型绑定器绑定。
@for (int i = 0; i < Model.Count(); i++)
{
<tr>
<td>
<input type="hidden" name="[@i].ID" value="@Model.ElementAt(i).ID"/>
</td>
<td>
<input type="hidden" name="[@i].Area" value="@Model.ElementAt(i).Area" />
@Model.ElementAt(i).Area
</td>
<td>
<input name="[@i].Debug" type="checkbox" id="[@i].Debug" class="regular-checkbox" @(Model.ElementAt(i).Debug ? "checked='checked'" : "") value="@Model.ElementAt(i).Debug"/><label for="[@i].Debug" ></label>
</td>
<td>
<input name="[@i].Error" type="checkbox" id="[@i].Error" class="regular-checkbox" @(Model.ElementAt(i).Error ? "checked='checked'" : "") value="@Model.ElementAt(i).Error"/><label for="[@i].Error" ></label>
</td>
<td>
<input name="[@i].Info" type="checkbox" id="[@i].Info" class="regular-checkbox" @(Model.ElementAt(i).Info ? "checked='checked'" : "") value="@Model.ElementAt(i).Info"/><label for="[@i].Info" ></label>
</td>
<td>
<input name="[@i].Warnning" type="checkbox" id="[@i].Warnning" class="regular-checkbox" @(Model.ElementAt(i).Warnning ? "checked='checked'" : "") value="@Model.ElementAt(i).Warnning"/><label for="[@i].Warnning" ></label>
</td>
<td>
<input name="[@i].Fatal" type="checkbox" id="[@i].Fatal" class="regular-checkbox" @(Model.ElementAt(i).Fatal ? "checked='checked'" : "") value="@Model.ElementAt(i).Fatal"/><label for="[@i].Fatal" ></label>
</td>
</tr>
}
我还有一个动作:
[HttpPost]
public ActionResult EditAll(IList<LogSetting> logsettings)
{
if (ModelState.IsValid)
{
foreach (var logsetting in logsettings)
{
db.LogSettings.Attach(logsetting);
db.ObjectStateManager.ChangeObjectState(logsetting, EntityState.Modified);
}
db.SaveChanges();
}
return RedirectToAction("Index");
}
问题是当我取消选中一行的复选框并提交表单时,相应行的值变为 false,但是如果我选中此复选框并提交表单,它不会变为真,在这种情况下,当我设置断点时在保存操作中,我看到该值仍然为 false。
谢谢你的帮助。