我有jsp中的代码;以下代码在 ac:forEach 循环内。
<td>
<form:radiobutton path="status" value="true" class="radio onRadio" />
<label class="lblOn">On</label>
<form:radiobutton path="status" value="false" class="radio offRadio" />
<label class="lblOff">Off</label>
</td>
在我的 pojo 中,属性是:
public Class Channel{
private boolean status= false;
......
}
和 getter 和 setter
serviceImpl 就像:
Channel oChannel = new Channel();
/* active/inactive will comes from DB */
if("active".equalsIgnoreCase("active")){
oChannel.setStatus(true);
}else{
oChannel.setStatus(false);
}
但是在jsp中,我正在为所有行选择Off,我在哪里做错了?有什么帮助吗?