我正在尝试为测试制作动态表单。 我的问题是当我提交的时候,在控制器列表中的post方法中,gq为null,但我希望填充表格中填写的数据。 我猜它必须用@ Html.EditorForModel()和数据绑定做一些事情,但我不完全理解它是如何工作的。任何的想法?谢谢
型号:
public class GeneratedQuestions
{
public int GeneratedQuestionsId { get; set; }
public string QuestionText { get; set; }
public List<StudentAnswer> QuestionAnswers { get; set; }
public int StudentTestsId { get; set; }
public virtual StudentTest StudentTests { get; set; }
}
查看:
@model IEnumerable<Project.Models.GeneratedQuestions>
@{
ViewBag.Title = "StartTest";
}
@using (Html.BeginForm())
{
@Html.EditorForModel()
foreach (var question in Model)
{
<br />
<h1>@question.QuestionText</h1>
foreach (var answer in question.QuestionAnswers)
{
@Html.CheckBoxFor(x => answer.WasChecked)
@Html.DisplayFor(x => answer.AnswerText)
@Html.HiddenFor(x => answer.GeneratedQuestionsId)
<br />
}
}
<input type="submit" value="Submit" />
}
控制器:
public ActionResult StartTest(int id)
{
List<GeneratedQuestions> generatedQuestions = db.StudentTests.Find(id).GeneratedQuetions.ToList();
return View(generatedQuestions);
}
[HttpPost]
public ActionResult StartTest(List<GeneratedQuestions> gq)
{
//stuff
return RedirectToAction("Index");
}
答案 0 :(得分:0)
如上所示:
ASP.NET MVC 4 - for loop posts model collection properties but foreach does not
MVC助手讨厌foreach循环。 转到for循环,一切都应该正常。
编写两个循环并使用Web开发人员工具检查它们,以查看“id”和“name”属性的区别。