我在ASP.NET MVC中有一个简单的表单。我试图将这些结果发布到控制器动作,我的行为很奇怪。
view
是一个简单的HTML表格:
以下是HTML表单视图的一部分:
<form action="/Applications/UpdateSurvey" method="post"><table id=questionsTable class=questionsTable border=1>
<thead><tr><td>Name</td><td>Answer</td><td>Name Attribute(for debugging)</td></tr> </thead><tbody>
<tr>
<td>Question 0:</td>
<td><input type='checkbox' class='checkboxes' name='updater.questions[0].responseIds' value=1 >1 <input type='checkbox' class='checkboxes' name='updater.questions[0].responseIds' value=2 >2 <input type='checkbox' class='checkboxes' name='updater.questions[0].responseIds' value=3 >3 <input type='checkbox' class='checkboxes' name='updater.questions[0].responseIds' value=4 >4 <input type='checkbox' class='checkboxes' name='updater.questions[0].responseIds' value=5 >5 </td>
<td>updater.questions[0].responseIds</td>
</tr>
<tr>
<td>Question 1:</td>
<td><input type='checkbox' class='checkboxes' name='updater.questions[1].responseIds' value=1 >1 <input type='checkbox' class='checkboxes' name='updater.questions[1].responseIds' value=2 >2 <input type='checkbox' class='checkboxes' name='updater.questions[1].responseIds' value=3 >3 <input type='checkbox' class='checkboxes' name='updater.questions[1].responseIds' value=4 >4 <input type='checkbox' class='checkboxes' name='updater.questions[1].responseIds' value=5 >5 </td>
<td>updater.questions[1].responseIds</td>
</tr>
</tbody></table>
<input type="submit" value="Save" />
</form>
绑定对象:
public class SurveyUpdater
{
public Question[] questions { get; set; }
}
public class Question
{
public int[] responseIds { get; set; }
}
控制器操作代码:
public ActionResult UpdateSurvey(SurveyUpdater updater)
{
if (updater.questions == null)
{
//I dont understand why this is getting hit
}
if (updater.questions.Length != 5)
{
//I dont understand why this is getting hit
}
return View("TestSurvey");
}
经过测试,以下是我的观察结果:
如果我在每个问题上至少选择了一个CheckBox
,这样就可以正常使用我的控制器updater.questions.Length == 5
并且数据绑定完美。
如果我根本不回答其中一个问题,我只会得到一个与我跳过的数字一样大的数组:-1
。所以,如果我没有回答问题#3,我的控制器动作为2,我得到一个数组。
通过使用#2的逻辑,如果我不回答第一个问题,我只需null
updater.questions
醇>
我想得到的(以及我所期望的)是:
我总是会questions
获得5
的长度,而在我没有回答其中一个问题的情况下,我只会得到一个0
大小的数组index responseIds
。
这是ASP.NET MVC模型绑定中的错误吗?如果没有,我有什么遗漏或任何方式来获得我想要的行为吗?
答案 0 :(得分:5)
我认为问题是因为当没有选择选择时,输入甚至不会在请求参数中传回。解决这个问题的一种方法是使用一个默认的隐藏复选框,其中包含一个已知值,您可以根据每个问题初步选择一个已知值(如果您愿意,则选择“未应答”复选框)。这样可以保证您可以选择每个问题,并且数组中的每个元素都存在请求参数。
从发布回来的角度考虑一下。仅发布具有值,具有名称且未禁用的元素。如果不是所有问题都有值,那么它应该创建多少个数组项?最多可以猜测所选的最后一项应该是数组的大小 - 但是它应该用于中间任何项目的值是多少?框架无法读懂您的想法,并且可以说,不应该提供该类型的默认值可能是合理的。 IMO,最好省略该值,因此,如果需要,强制开发人员提供默认值。这似乎正在发生的事情。