在 JSF 中,我想从下拉菜单中重定向页面。当我使用faces-config
using时它会重定向navigation-rule
:
<navigation-rule>
<from-view-id>*</from-view-id>
<navigation-case>
<from-outcome>test</from-outcome>
<to-view-id>/pages/design/TestDetails.xhtml</to-view-id>
<redirect/>
</navigation-case>
</navigation-rule>
但是当我尝试直接传递 URL 时,我无法重定向:
<rich:menuItem label="someLabel" action="/pages/design/TestDetails.xhtml" />
我的代码有什么问题?