让您的 View Model 像这样来表示 CheckBox 项
public class ChannelViewModel
{
public string Name { set;get;}
public int Id { set;get;}
public bool IsSelected { set;get;}
}
现在你的主 ViewModel 将是这样的
public class AlertViewModel
{
public int AlertId { get; set; }
public List<ChannelViewModel> UserChannelIds { get; set; }
//Other Properties also her
public AlertViewModel()
{
UserChannelIds=new List<ChannelViewModel>();
}
}
现在在您的GET
操作中,您将填充 ViewModel 的值并将其发送到视图。
public ActionResult AddAlert()
{
var vm = new ChannelViewModel();
//The below code is hardcoded for demo. you mat replace with DB data.
vm.UserChannelIds.Add(new ChannelViewModel{ Name = "Test1" , Id=1});
vm.UserChannelIds.Add(new ChannelViewModel{ Name = "Test2", Id=2 });
return View(vm);
}
现在让我们创建一个 EditorTemplate。转到并创建一个名为“ EditorTemplatesViews/YourControllerName
”的文件夹,并在那里创建一个与 Property Name( )同名的新视图ChannelViewModel.cshtml
将此代码添加到您的新编辑器模板中。
@model ChannelViewModel
<p>
<b>@Model.Name</b> :
@Html.CheckBoxFor(x => x.IsSelected) <br />
@Html.HiddenFor(x=>x.Id)
</p>
EditorFor
现在在您的主视图中,使用Html Helper 方法调用您的编辑器模板。
@model AlertViewModel
<h2>AddTag</h2>
@using (Html.BeginForm())
{
<div>
@Html.LabelFor(m => m.AlertId)
@Html.TextBoxFor(m => m.AlertId)
</div>
<div>
@Html.EditorFor(m=>m.UserChannelIds)
</div>
<input type="submit" value="Submit" />
}
现在,当您发布表单时,您的模型将拥有UserChannelIds
Collection,其中 Selected Checkboxes 将具有属性True
值。IsSelected
[HttpPost]
public ActionResult AddAlert(AlertViewModel model)
{
if(ModelState.IsValid)
{
//Check for model.UserChannelIds collection and Each items
// IsSelected property value.
//Save and Redirect(PRG pattern)
}
return View(model);
}