我有一个带有复选框输入的表单:
<form:input id="garder_${indice}" path="mesFormulaires[${indice}].garder"
type="text" name="garder_${indice}" />
我想知道复选框是否在 Java 中被选中。怎么可能,使用带有名为“garder”的布尔值的 getter/setter。我希望 Java 方法可以实现,但我不知道它们。
我有一个带有复选框输入的表单:
<form:input id="garder_${indice}" path="mesFormulaires[${indice}].garder"
type="text" name="garder_${indice}" />
我想知道复选框是否在 Java 中被选中。怎么可能,使用带有名为“garder”的布尔值的 getter/setter。我希望 Java 方法可以实现,但我不知道它们。
如果您使用的是 Spring MVC,我建议您使用form:checkbox
标签并将其绑定到modelAttribute
表单对象的属性。
public class YourModelAttribute{
private boolan checkBoxProp;
// other props
// getter and setter for your props
}
然后在您的页面中:
<form:checkbox id="ckbId" path="checkBoxProp" />
请务必在modelAttribute
您的表单中设置YourModelAttribute
.