我想将复选框传递给支持 CDI-Bean。postTest.values只是一个多头列表。
<h:form>
<h:dataTable value="#{postTest.values}" var="val">
<h:column>
<h:outputLabel value="#{val}"/>
</h:column>
<h:column>
<h:selectBooleanCheckbox value="#{postTest.checked[val]}"/>
</h:column>
</h:dataTable>
<h:commandButton action="#{postTest.process}"/>
</h:form>
action 方法应该打印出检查的值。但它只是空的。
@Named
@RequestScoped
public class PostTest {
List<Long> values;
Map<Long, Boolean> checked;
...
public String process() {
logger.info(this.toString() + "Processing");
for (Long l : checked.keySet()) {
logger.info(this.toString() + "\t" + l + ". checked: " + checked.get(l));
}
return "index2";
}
...
}
当我将日志记录添加到getChecked()方法时,我可以看到,它每列只检索一次,并且其内容根本没有改变。
问题似乎与表单传递值时未初始化postTest.values的点有关。因为如果我在构造函数(或@PostConstruct)中初始化postTest.values,则检查的项目将正确传递。
为什么我需要在执行 POST 请求后初始化postTest.values ?
有没有办法防止这种情况?
还是我有其他选择?例如,确保不使用构造函数或@PostConstruct 正确初始化postTest.values,因为我想在初始化之前将值传递给它(我尝试了侦听器,但他们似乎没有解决这个问题)。
谢谢!
蒂姆