我想从多个表单提交(执行)值,而不仅仅是封闭表单.所以,我希望能够做到这样的事情:
<h:form id="form1> <h:inputText id="testinput1" value="#{testBean.input1}" /> </h:form> <h:form id="form2> <h:inputText id="testinput2" value="#{testBean.input2}" /> <h:commandButton value="Submit"> <f:ajax execute=":form1 :form2"/> </h:commandButton> </h:form>
你怎么解决这个问题?
What is <f:ajax execute=”@all”> really supposed to do? It POSTs only the enclosing form
似乎是相关的,但解决了一个稍微不同的问题,也没有解决它(或这个).
解决方法
是否使用Ajax,使用普通的JSF / HTML是不可能的.需要处理的所有输入元素确实需要进入同一个表单.