当用户在页面之间导航时,用户输入不会得到验证

时间:2014-09-23 15:09:57

标签: forms jsf navigation submit

我的问题是,当用户在页面之间导航时,用户输入不会被提交和验证。

当时我正在学习JSF编写应用程序。该应用程序包含各种页面。我使用默认模板插入导航模板。

这是我的导航模板

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<ui:composition xmlns="http://www.w3.org/1999/xhtml"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:pt="http://xmlns.jcp.org/jsf/passthrough">


<ui:insert name="navigation">
            <nav>           
                <h:panelGroup>
                <h:form>
                <h:commandButton value="GO BACK" styleClass="button" action="GOBACK"/>
                <h:commandButton value="Reset" pt:type="Reset" styleClass="button" action="RESET"/>
                <h:commandButton value="GO FORWARD" action="GOFORWARD" styleClass="button"/>
                </h:form>
            </h:panelGroup>
            </nav>
    </ui:insert>
</ui:composition>

这是我的default.xhtml模板

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:ui="http://java.sun.com/jsf/facelets"
      xmlns:h="http://java.sun.com/jsf/html">
<h:head>
  <title><ui:insert name="title">Page</ui:insert></title>
  <h:outputStylesheet library="css" name="normalize.css"/>
  <h:outputStylesheet library="css" name="atmosphere.css"/>
  <h:outputStylesheet library="css" name="layout.css"/>


</h:head>

<h:body>
<div id="container">
<div id="header">
        <ui:include src="header.xhtml"/>
</div>


<div id="content">
  <ui:insert name="content">
        Content area.  See comments below this line in the source.
  </ui:insert>
</div>
<div id="navigation">
    <ui:insert name="navigation">
        <ui:include src="navigation.xhtml"></ui:include>
    </ui:insert>
</div>
</div>
</h:body>

</html>

在faces-config中,我有一些导航规则,例如:

<navigation-rule>
    <display-name>firstPage.xhtml</display-name>
    <from-view-id>/firstPage.xhtml</from-view-id>
    <navigation-case>
        <from-outcome>GOFORWARD</from-outcome>
        <to-view-id>/secondPage.xhtml</to-view-id>
    </navigation-case>
</navigation-rule>

现在我想创建一个内容模板客户端,其中包含<h:form>。但现在的问题是,当用户按下其中一个导航按钮时,用户输入不会得到验证和提交(因为导航是以其他形式)。你知道解决方案吗? (或者我在一个额外的模板中导航错误了吗?)

我唯一的想法是在default.xhtml模板的内容和导航部分周围写一个<h:form>

感谢。

1 个答案:

答案 0 :(得分:1)

我同意RevanProdigalKnight。例如,除了通过faces-config导航。您可以通过像下面的代码一样放入支持bean进行导航:

@ManagedBean
@ViewScoped
class Bean{

public String goToNextPage(){
return "nextPage.xhtml";
}

如果您想将信息发送到下一页

   public String goToNextPage(){
    FacesContext context = FacesContext.getCurrentInstance();
     context.getExternalContext().getRequestMap()
            .put("info", yourInformation);
     return "nextPage.xhtml"

然后在xhtml中,你将有

     h:commandButton value="GO FORWARD" action = "#{bean.goToNextPage()}"

现在,对于提交和验证,在支持bean中,您将获得在字段中输入的信息并进行验证,有许多方法可以进行验证。假设您在第一页中有一个文本字段名称userField,并且其中一个要求是用户输入内容,那么

First Page.xhtml

   h:inputText value = "#{bean.userField}" required = "true"  requiredMessage = "Input something please"

然后在豆子里   创建一个名为userField的字段

  private String userField = "";

然后为它做getter和setter