0

也许我犯了愚蠢的错误。但我找不到它。这是代码,一切都很好。就可以切换到正确的页面。/

<navigation-rule>
  <from-view-id>/index.xhtml</from-view-id>
  <navigation-case>
   <from-action>#{user.isUserValid}</from-action>
   <from-outcome>true</from-outcome>
   <to-view-id>/loginSuccess.xhtml</to-view-id>
  </navigation-case>
  <navigation-case>
   <from-action>#{user.isUserValid}</from-action>
   <from-outcome>false</from-outcome>
   <to-view-id>/loginFail.xhtml</to-view-id>
  </navigation-case>
 </navigation-rule>

xHtml 页面

<body> 
    <h:form>
        <h:outputLabel value="Username:" />
        <h:inputText value="#{user.username}" />
        <br></br>
        <h:outputLabel value="Password:" />
        <h:inputSecret value="#{user.password}" />
        <br></br>
        <h:commandButton action="#{ user.isUserValid }" value="Login"></h:commandButton>
    </h:form>
    <h:outputLabel value="#{user.loginState}" />
</body> 

路径是正确的。不知道问题出在哪里

4

1 回答 1

0

根据我从您的代码中看到的。isUserValid 正在返回一个布尔值。注意,from-outcome 标签只接受字符串值,所以布尔值不起作用。

在此处输入图像描述

来源:谷歌图书

于 2013-06-10T19:16:13.813 回答