0

我在 Razor 视图中的列表中显示。在其中,我有几个显示在列表视图中的编辑器模板。这是我的编辑器模板。

@using Contoso.MvcApplication.Extensions
@model Contoso.MvcApplication.ViewModels.MultipleChoiceQuestionViewModel

<h5>@Model.Question.QuestionText</h5>

<div>
@Html.RadioButtonForSelectList(m => m.Question.SelectedAnswer, Model.AnswerRadioList)
@Html.ValidationMessageFor(m => m.Question.SelectedAnswer)
</div>

问题是我设置的地方RadioButtonForSelectList,它的绑定是如此,因为我知道在这种情况下应该在这样的 for 循环中:

@Html.RadioButtonForSelectList(m => m[i].Question.SelectedAnswer, Model.AnswerRadioList) // the index

但是从编辑器模板中,我无法知道 lambda 表达式中的索引。

这是我从中复制 html 扩展名的站点:

http://jonlanceley.blogspot.mx/2011/06/mvc3-radiobuttonlist-helper.html

这是我正在使用的视图模型

public class MultipleChoiceQuestionViewModel
{
    public MultipleChoiceQuestion Question { get; set; }
    public List<SelectListItem> AnswerRadioList { get; set; }
}

如何正确绑定radioButton?

当我阅读代码中的标签时,我列表中的所有模型都具有相同的 id: Question.SelectedAnswer。我认为这是错误的,因为应该有一个像这样的索引 ID Question.SelectedAnswer.[INDEX]:。

更新:

    public ActionResult Index(short testId)
    {
        GenerateQuiz(testId);
        StartQuiz();

        return View(CreateQuestionViewModel((MultipleChoiceQuestion)CurrentQuestion));
    }

    [HttpPost]
    public ActionResult Index(MultipleChoiceQuestionViewModel q)
    {
        // Save answer state
        ((MultipleChoiceQuestion)CurrentQuestion).SelectedAnswer = q.Question.SelectedAnswer;

        if (CurrentNumber == Questions.Count - 1)
        {
            QuizCompleted();
            return RedirectToAction("ShowResults");
        }
        else
        {
            NextQuestion();
            return View(CreateQuestionViewModel((MultipleChoiceQuestion)CurrentQuestion));
        }
    }
4

1 回答 1

0

显示问题的视图部分应如下所示:

@for (int j = 0; j < Model.Questions.Count; j++)
{
    <h5>
         Model.Questions[j].QuestionText
    </h5>
    <div>
       @Html.RadioButtonForSelectList(m => m.Questions[j].SelectedAnswer, Model.AnswerRadioList)
    </div>
}
于 2013-01-17T19:09:07.740 回答