如果不是我在字典中写的情况,则非常经典地使用复选框。启动网站时,我会转到带有复选框的页面。在这里,我的字典存在并填充了设置为 false 的值:
在测验之前,构建 ViewModel:

然后,在选中复选框并验证后,我返回控制器,但字典为空:
测验后,检查 checkboxFor 并更新值:

RadioButtonFor 工作正常,所以这真的很奇怪。
这是代码:
测验前:
public ActionResult MovetoQuiz(string QuizzField, string QuizzDifficulty)
{
//...//
QuizzViewModel quizzModel = new QuizzViewModel(displayedQuestions, ResultType.Training);
return View("Quizz", quizzModel);
}
测验页面:
@model QRefTrain3.ViewModel.QuizzViewModel
@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>Quizz</title>
@Styles.Render("~/Content/css")
@Styles.Render("~/Content/Site.css")
</head>
<body>
<div>
<!-- For each Question, display a new div with the Title, the question code, the question text, the video if there is one, then the possible answers depending on the type of answers-->
@using (Html.BeginForm("QuizzResult", "Home"))
{
@Html.HiddenFor(m => Model.ResultType)
for (int i = 0; i < Model.DisplayedQuestions.Count; i++)
{
<div class="QuizzQuestion">
<div class="QuizzQuestionTitle">@Model.DisplayedQuestions[i].Id : @Model.DisplayedQuestions[i].Name</div>
<div class="QuizzQuestiontext">@Model.DisplayedQuestions[i].QuestionText</div>
@if (@Model.DisplayedQuestions[i].IsVideo)
{
<div class="QuizzQuestionVideoContainer">
<iframe class="QuizzQuestionVideo" id="ytplayer" type="text/html"
src="@Model.DisplayedQuestions[i].VideoURL"
frameborder="0"></iframe>
</div>
}
@if (@Model.DisplayedQuestions[i].AnswerType == QRefTrain3.Models.AnswerType.SingleAnswer)
{
<div class="RadioButtonAnswers">
@for (int j = 0; j < Model.DisplayedQuestions[i].Answers.Count; j++)
{
@Model.DisplayedQuestions[i].Answers[j].AnswerText
@Html.RadioButtonFor(m => m.DisplayedQuestions[i].AnswersRadio, Model.DisplayedQuestions[i].Answers[j].Id)
}
</div>
}
else if (@Model.DisplayedQuestions[i].AnswerType == QRefTrain3.Models.AnswerType.MultipleAnswer)
{
<div class="RadioButtonAnswers">
@for (int j = 0; j < Model.DisplayedQuestions[i].Answers.Count; j++)
{
@Model.DisplayedQuestions[i].Answers[j].AnswerText
// HERE IS THE CHECKBOXFOR
@Html.CheckBoxFor(m => m.DisplayedQuestions[i].AnswerCheckbox[Model.DisplayedQuestions[i].Answers[j].Id])
}
</div>
}
</div>
}
<input type="submit" value="Validate Answers" />
}
</div>
</body>
</html>
还有我使用的viewModel(由于radioButtonFor和CheckBoxFor之间的不兼容,我不得不做一些奇怪的事情,不要介意):
public class QuestionQuizzViewModel
{
public int Id { get; set; }
public string Name { get; set; }
public bool IsVideo { get; set; }
public string VideoURL { get; set; }
public string QuestionText { get; set; }
public AnswerType AnswerType { get; set; }
public List<AnswerQuizzViewModel> Answers { get; set; }
// Lists containing user's answers. They have to be separated because RadioButtonFor and CheckBoxFor are incompatible when used together
// Use this to store checkbox answers : Boolean switch. Key is answer's ID, value is True/false (selected or not)
public Dictionary<int, Boolean> AnswerCheckbox { get; set; }
// Use this to store radioButton answers : All radioButtons register to the same list, thus being in the same group
// Key is Question's ID, value is selected Answers' Id
public List<int> AnswersRadio { get; set; }
public QuestionQuizzViewModel(int id, string name, bool isVideo, string videoURL, string questionText, AnswerType answerType, List<AnswerQuizzViewModel> answers)
{
//...//
// Initialize the list used in the viewModel, depending on the answer type. The other won't be used
if (answerType == AnswerType.SingleAnswer)
{
AnswersRadio = new List<int>();
}
else if (answerType == AnswerType.MultipleAnswer)
{
AnswerCheckbox = new Dictionary<int, bool>();
foreach (AnswerQuizzViewModel a in answers)
{
AnswerCheckbox.Add(a.Id, false);
}
}
如您所见,我初始化了将用于问题的列表,然后将 False 值添加到 AnswerCheckbox 字典。我想要的是 CheckBoxFor 更改这些值,并在 POST 控制器中返回它们。