gpt4 book ai didi

java - primefaces:同时进行 actionListener 和重定向

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:13:33 24 4
gpt4 key购买 nike

我想当我点击一个

   <p:commandButton>

,调用一个Bean进行处理,同时将页面重定向到另一个页面。

换句话说,我想结合:

<p:commandButton actionListener="#{processBean.process}" >
</p:commandButton>

和:

<h:link outcome="redirection"> 
</h:link>

其中“重定向”在faces-config.xml中配置

我该怎么办?有没有更好的方法来实现这一目标?

最佳答案

使用 p:commandButton 的 action 属性。

<p:commandButton actionListener="#{processBean.process}" >
</p:commandButton>

改成

<p:commandButton actionListener="#{processBean.process}" action="viewIDToRedirect" >
</p:commandButton>

首先,将调用 actionListener,然后启动导航。但请记住,您需要在 faces-config.xml

中定义导航规则

关于java - primefaces:同时进行 actionListener 和重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21782427/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com