我想做这样的事情(根据某些情况重定向到不同的页面!):
<ui:fragment rendered="#{projectPageBean.availableMethods}">
<p:commandButton id="test"
value="View Instrument"
action="instrumentLayout?faces-redirect=false"/>
</ui:fragment>
<ui:fragment rendered="#{not projectPageBean.availableMethods}">
<p:commandButton id="test1"
value="View Instrument"
action="methodLayout?faces-redirect=false"/>
</ui:fragment>
但是这种结构似乎不起作用;动作属性中的页面重定向永远不会执行!
我怎样才能让这种行为正确?