我正在尝试在视图上生成两组复选框列表。除了发布操作之外,这一切都有效。提交时,ParentViewModel 未正确绑定 ChildViewModel 模型。FirstCheckboxList 模型。SecondCheckboxList 以上两者都为空。
我不确定我错过了什么。对此的任何帮助都会很棒。提前致谢。
CheckboxItems.cshtml
@model List<CheckboxItem>
@{
for (int i = 0; i < Model.Count(); i++)
{
<div>
@Html.CheckBoxFor(x => x.ElementAt(i).Checked, new { @id = Model.ElementAt(i).Id, onclick = "GetValue()" })
<span id="Padded">@Model.ElementAt(i).Text</span>
</div>
}
}
主视图.cshtml
@Html.BeginForm(){
@Html.EditorFor(m=> m.FirstCheckboxList,"CheckboxItems")
@Html.EditorFor(m=> m.SecondCheckboxList, "CheckboxItems")
}
@Html.TextBoxFor(m => m.FSelected, new Dictionary<string,object>() {{"readonly",true}})
@Html.TextBoxFor(m => m.FUniverse,new Dictionary<string,object>() {{"readonly",true}})
<input type="submit" name="nextBtn" value ="Next" />
}
父视图模型
public class ParentViewModel
{
public int PId { get; set; }
public IEnumerable<CheckboxItem> FirstCheckboxList{ get; set; }
public IEnumerable<CheckboxItem> SecondCheckboxList{ get; set; }
public Int64 FSelected { get; set; }
public Int64 FUniverse { get; set; }
}
CheckboxItem : 子视图模型
public class CheckboxItem
{
public int Id { get; set; }
public string Text { get; set; }
public bool Checked { get; set; }
}
控制器动作
[HttpPost]
public ActionResult MyCheckboxView(int planid, ParentViewModel model, string nextBtn)
{
// do something
return View(Model);
}