我正在从我的 bean 和我的视图向我的 bean 发送值,如果我使用诸如“acitonListener”之类的事件,一切都很好,但现在我想将用户发送到其他页面(使用导航规则,它可以工作完美)当我单击一个按钮时,但在此之前我想在我的 bean 中设置一个值,我该怎么做?
我正在做这样的事情
<p:commandButton value="Send" id="sendButton" action="#{myBean.myMethod}"
update=":form:growTop" >
</p:commandButton>
在此之前只有一个包含<h:outputText/>
我的 bean 值的表,有什么方法可以做到这一点?
谢谢