我有一份问卷表单,其中组件(问题)以编程方式在我的支持bean中生成。
在表单提交事件中,我需要收集所有用户输入并将其存储在db。
中但是JSF无法识别动态生成的组件,只能找到我的Facelets页面中的panelgrid和submit按钮。这是我的submit()方法。
public boolean submit() {
UIViewRoot viewRoot = FacesContext.getCurrentInstance().getViewRoot();
UIComponent formComponent = viewRoot.findComponent("mainForm"); //form id
HtmlForm form = (HtmlForm)formComponent;
List<UIComponent> componentList = form.getChildren();
for(int p=0; p<componentList.size(); p++) {
UIComponent component = componentList.get(p);
System.out.println("The Component ID is:"+component.getId());
}
return true;
}
除了上述方法之外,有谁知道我可以在哪里寻找我的组件?
答案 0 :(得分:0)
这不是收集提交值的正确方法。
您应该将组件的value属性绑定到bean属性。 E.g。
UIInput input = new HtmlInputText();
input.setId("input1");
input.setValueExpression("value", createValueExpression("#{bean.input1}", String.class));
form.getChildren().add(input);
这样JSF就会以通常的方式更新bean属性。
private String input1; // +getter+setter
public void submit() {
System.out.println(input1); // Look, JSF has already set it.
}
您可以利用Map<String, Object>
属性带来更多动态。