我正在使用SimpleFormController并在视图中有复选框。提交表单时,复选框的值正确绑定到bean。 但是当表单(jsp视图)从onSubmit方法返回时,不会选中复选框。我尝试过做以下事情: -
<input name="location" description="xyz" type="checkbox" id="location-filter-1" style="float:left" value="1"/>
<input name="location" description="xyz" type="checkbox" id="location-filter-1" style="float:left" value="1"/>
<input type="hidden" name="_location" value="visible"/>
<springbind:bind path="location">
<input name="location" description="chennai" type="checkbox" id="location-filter-1" style="float:left" value="1"/>
<input type="hidden" name="_location" value="visible"/>
</springbind:bind>
我没有运气检查复选框。任何人都可以建议解决这个问题。
在bean中,Integer数组用于保存已选中复选框的值: -
private Integer[] location;
复选框目前是这样的: - 复选框的排列方式如下
<ul>
<li class="x">
<span>text</span>
<input type="checkbox" value="1" id="location-1" name="location"/>
</li>
<li><span>text</span>
<input type="checkbox" value="2" id="location-2" name="location"/>
</li>
<li>...</li>
..
</ul>
答案 0 :(得分:1)
您应该尝试使用spring框架的表单标记库来绑定复选框的值。
<form:checkboxes items="" path=""/>
在项目属性中,传递包含复选框值的列表,并在路径中使用位置。
希望这会对你有所帮助。欢呼声。