JSF中的嵌套表单概念?

时间:2016-10-13 09:07:03

标签: jsf jsf-2

根据HTML标准不允许嵌套表单和JSF遵循相同的内容,但如果我们有如下设计

MainPage.xhtml

 <ui:composition template="../templates/home.xhtml">
        <ui:define name="content">
            <h:form>
                <rich:panel>
..........................................
..........................................
                </rich:panel>
  <rich:panel>
    <ui:insert name="createLinkTemplate">
     <ui:include src="../pages/page.xhtml" />
    </ui:insert>
  </rich:panel>
<h:form>
</ui:define>
</ui:composition>

page.xhtml

内的内容
<html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:a4j="http://richfaces.org/a4j"
    xmlns:rich="http://richfaces.org/rich"
    xmlns:fn="http://java.sun.com/jsp/jstl/functions">
<h:head>
</h:head>
<h:body>
    <h:form id="formID">

        <rich:panel>
..........................
............................
............................
        </rich:panel>
</h:form>
</h:body>
</html>

这是否属于嵌套案例?

home-template.xhtml内容

<?xml version='1.0' encoding='UTF-8' ?>
<!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:h="http://java.sun.com/jsf/html"
      xmlns:f="http://java.sun.com/jsf/core"
      xmlns:ui="http://java.sun.com/jsf/facelets"
      xmlns:a4j="http://richfaces.org/a4j"
      xmlns:rich="http://richfaces.org/rich"
      xmlns:c="http://java.sun.com/jsp/jstl/core">
...................................................
...................................................
...................................................
<rich:panel styleClass="tabs-main" id="tabsMain">
       <h:form id="contentform">
          <ui:insert name="content"/>
        </h:form>
 </rich:panel>
</h:body>
</html>

还有一个问题首先我要从Main.xhtml页面到这里,我要去page.xhtml,当我从那里回来我在文本框中写的所有值或者从下拉列表中选择我有一个空的表格。

1 个答案:

答案 0 :(得分:1)

当表格嵌套在结果页面中时,表格会嵌套 - 模板和包含的形状与此无关。

浏览器无法知道<form>标记的来源。它只看到有两个表单标签,一个放在另一个中。