0

我有一个“调查”页面,声明如下:

@using (Html.BeginForm("Survey", "Home", new { questionList = Model.Questions }, FormMethod.Post))
{
    <div class="survey">
        <ol class="questions">
            @foreach (Question q in Model.Questions)
            {
                <li class="question" id="@q.QuestionName">
                    @q.QuestionText<br />
                    @foreach (Answer a in q.Answers)
                    {
                        <input class="answer" id="@a.DisplayName" type="checkbox" /><label for="@a.DisplayName">@a.AnswerText</label>
                        if (a.Expandable)
                        {
                        <input type="text" id="@a.DisplayNameFreeEntry" maxlength="250" /> <span>(250 characters max)</span>
                        }
                        <br />
                    }
                </li>
            }
        </ol>
    </div>
    <div class="buttons">
        <input type="submit" value="Finish" />
    </div>
}

当我单步执行我的代码时,它会触发我为处理他们的调查而设置的方法:

[HttpPost]
public ActionResult Survey( List<Question> questionList, FormCollection postData)
{
     //Process Survey
}

但是,当我逐步执行时,我发现该变量questionList为空,并且该变量postData不包含表单中的任何数据。尝试通过Request[a.Displayname也无法访问复选框。

我读过的所有内容都表明这是将值从模型持久保存到提交方法的正确方法,并且我应该能够以这种方式访问​​ FormCollection。

我究竟做错了什么?

4

3 回答 3

1

为空的事实postData很奇怪,因为表单标签内的每个带有 id 的输入元素都应该与 POST 请求一起传递。

但是questionList不会以这种方式接收,因为它是一个复杂类的列表(不仅仅是一个字符串或 int),并且默认值ModelBinder(将 HTTP 请求变量转换为传递给操作方法的参数的东西)不支持复杂类的列表。

如果您希望能够接收 List ,您将必须使用 实现您自己的绑定机制CustomModelBinder

本文可以帮助您实现它。

于 2013-07-12T21:31:50.723 回答
1

您必须将 questionList 保存为页面上的隐藏字段。非原始类型不会简单地通过传入它们来持久化。

您可以这样做的一种方法是

@Html.HiddenFor(m => m.Foo)

或者您可以像这样直接在 HTML 中执行此操作

<input type="hidden" name="Var" value="foo">

其中 m 是您的模型。

于 2013-07-12T21:14:33.310 回答
0

一个问题是您的复选框并且您的文本框没有正确绑定到您的模型。

你应该使用@Html.CheckBoxFor@Html.TextBoxFor

于 2013-07-12T21:31:44.330 回答