我遇到了這種情況。當複選框未被選中時,struts複選框標籤提交什麼值
class MyForm extends IdSelectionForm {
private Boolean approveIt = true;
.....
}
我JSTL形式由
<html:checkbox property="approveIt" styleId="style1" value="true"/>
當我選擇複選框,然後提交。在struts動作中,我爲此字段設置了真值。 再次當我取消選中並提交時。那麼我也會得到真正的價值。我想知道它是否具有默認值。如果我取消選中,它應該被錯誤覆蓋。