我有一个表单,其中包含部分视图以呈现多个子控件。
主要观点:
@model Test_mvc.Models.Entity.Question
@{
ViewBag.Title = "Edit";
Layout = "~/Areas/Admin/Views/Shared/_Layout.cshtml";
}
@using (Html.BeginForm())
{
@*snip*@
<fieldset>
<legend>Profils</legend>
@Html.Action("CheckboxList", "Profil", new { id_question = Model.id })
</fieldset>
<p>
<input type="submit" value="Enregistrer" />
</p>
}
Profil控制器(用于局部视图):
[ChildActionOnly]
public ActionResult CheckboxList(int id_question)
{
var profils = db.Profil.Include("Profil_Question")
.OrderBy(p => p.nom).ToList();
ViewBag.id_question = id_question;
return PartialView(profils);
}
Profil.CheckBoxList视图:
@model List<Test_mvc.Models.Entity.Profil>
@foreach (var p in Model)
{
<input type="checkbox" name="profil_@(p.id)"
@if (p.Profil_Question.Where(pc => pc.id_question == ViewBag.id_question).Any())
{
@:checked="checked"
} />
@Html.Label("profil_" + p.id, p.nom)
<br />
}
(我不想使用@ Html.CheckBox,因为我不喜欢在选中复选框时发送“true,false”。)
今天,如果我想获得已经检查过的复选框,我会这样做,但我认为这很糟糕:
问题控制器(主视图):
[HttpPost]
public ActionResult Edit(Question question)
{
if (ModelState.IsValid)
{
db.Question.Attach(question);
db.ObjectStateManager.ChangeObjectState(question, EntityState.Modified);
db.SaveChanges();
// this is what I want to change :
foreach (string r in Request.Form)
{
if (r.StartsWith("profil_") && (Request.Form[r] == "true" || Request.Form[r] == "on")) {
var p_q = new Models.Entity.Profil_Question();
p_q.id_profil = int.Parse(r.Replace("profil_", ""));
p_q.id_question = question.id;
db.AddToProfil_Question(p_q);
}
}
db.SaveChanges();
return RedirectToAction("Index");
}
return View(question);
}
您如何替换最后一个代码部分中的“foreach”?
由于
答案 0 :(得分:1)
我要尝试的第一件事就是给所有复选框命名相同的名称,并将@id作为框的值:
@foreach (var p in Model) {
<input type="checkbox" name="profil_checkbox" value="@p.id"
@if (p.Profil_Question.Where(pc => pc.id_question == ViewBag.id_question).Any())
{
@:checked="checked"
} />
@Html.Label("profil_" + p.id, p.nom) <br /> }
然后我不应该搜索profil_@id
,而应该获得profile_checkbox
的一系列结果,这些结果更容易使用。我不记得MVC3究竟是如何处理这个的,所以我无法保证你在回发中会得到什么,但是在调试过程中这应该很容易检查。