ajax – JSF:执行多个表单的值

前端之家收集整理的这篇文章主要介绍了ajax – JSF:执行多个表单的值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想从多个表单提交(执行)值,而不仅仅是封闭表单.所以,我希望能够做到这样的事情: @H_502_2@<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是不可能的.需要处理的所有输入元素确实需要进入同一个表单.
原文链接:https://www.f2er.com/ajax/453726.html

猜你在找的Ajax相关文章