6

当我提交表单时,它应该调用另一个表单以便我可以呈现它。我使用 primefaces,我希望它能够像下面这样工作。但它抛出了一个错误。

xhtml

<h:form id="from1">
<h:inputText=......
<h:outputText=....
<p:commandButton id="submit" actionlistener="#{bean.method}" value="submit" process="form2"/>

<h:form id="form2">
<h:outoutText value="it is working" render="#{bean.boolean}" />
</h:form>

错误

[Faces Servlet]] (http--127.0.0.1-8080-2) Servlet.service() for servlet Faces Servlet threw exception: javax.faces.FacesException: Cannot find component with identifier "form2" referenced from "form1_submit".

更新

<h:form id="from1">
    <h:inputText=......
    <h:outputText=....
    <p:commandButton id="submit" actionlistener="#{bean.method}" value="submit" update=":form1"/>
</h:form>
4

2 回答 2

15

有两个错误:

  • 相对组件客户端 ID 与最近的父UINamingContainer组件相关(在您的情况下是<h:form id="form1">)。客户端 ID“form2”不存在于“form1”上下文中的任何位置。您需要使用绝对客户端 ID,并以默认为:. 这将从视图根目录开始搜索组件。

    process=":form2"
    
  • 您不能通过提交一个表格来处理另一个表格。您需要处理的所有字段根本没有提交(注意这不是 JSF 限制,而是 HTML 限制)。只需将您需要处理的字段附在与您需要提交的格式相同的表格中即可。

于 2012-08-01T19:53:13.900 回答
6

p:remoteCommand 和带有 onclick 的 JS 的另一种解决方案在 这里描述。

于 2014-07-14T07:54:02.377 回答