【发布时间】:2017-03-07 09:22:43
【问题描述】:
我正在使用 JSF 2.0,并且在 home.xhml 的 div 部分中有一个 commandButton。它不工作。我没有看到destinationPage,只保留在home.xhtml 中。
home.xhmtl:
<div id="left_side">
<ui:include src="login.xhtml" />
<h:form>
<h:commandButton value="register" action="register"/>
</h:form>
</div>
register.xhtml 在一个 h:body 和一个 h:form 中
还有 faces-config.xml 配置:
<navigation-rule>
<from-view-id>home.xhtml</from-view-id>
<navigation-case>
<from-outcome>register</from-outcome>
<to-view-id>register.xhtml</to-view-id>
</navigation-case>
</navigation-rule>
【问题讨论】: