我尝试使用addMoreStatus
的{{1}}属性调用action
方法,但不会调用它。我还使用了ajax来查看会话变量的值是否发生了变化。不幸的是,获取更多状态内的会话变量永远不会更新。 toIndex总是显示5。
1)的XHTML
<p:commandButton>
2)statusBean
<h:body>
<c:if test="#{statusBean.init == null}"/>
<h:form id="foo">
<p:commandButton id="bar" action="#{statusBean.addMoreStatus}"
value="test" update="test"></p:commandButton>
<h:outputLabel value="#{sessionScope['toIndex']}" id="test" />
</h:form>
</h:body>