0

我正在使用 SimpleFormController 并在视图中有复选框。提交表单时,复选框的值正确绑定到 bean。但是当表单(jsp 视图)从 onSubmit 方法返回时,不会选中复选框。我试过做以下事情: -

  1. <input name="location" description="xyz" type="checkbox" id="location-filter-1" style="float:left" value="1"/>

  2. <input name="location" description="xyz" type="checkbox" id="location-filter-1" style="float:left" value="1"/> <input type="hidden" name="_location" value="visible"/>

  3. <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 中,整数数组用于保存选中复选框的值:- 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>
4

1 回答 1

1

您应该尝试使用 spring 框架的表单标签库来绑定复选框的值。

<form:checkboxes items="" path=""/>

在 items 属性中传递包含复选框值的列表,并在路径中使用location

希望这对您有所帮助。干杯。

于 2012-06-12T07:08:53.910 回答