4

我有 2 个基本模板 - 一个带有侧边菜单,一个没有 - 两个 ui:include 一个包含 ui:insert 标签的公共页面(模板很大,所以下面的基本示例)。

使用 Mojarra 一切正常,但现在我已经迁移到 MyFaces,ui:insert 标记被忽略,相关 ui:define 的内容不会被渲染(即“这里是我的结果”不显示)。

我应该以某种方式将included-page.xhtml 指定为模板吗?我试过了

<ui:composition template="included-page.xhtml" />

代替

<ui:include src="included-page.xhtml" />

但丢失了CSS。

希望有人可以提出解决方案:)

非常感谢,

尼尔

我的页面.xhtml

<ui:composition xmlns:ui="http://java.sun.com/jsf/facelets"
    template="/templates/default-template.xhtml">

    <ui:param name="title" value="My Title" />

    <ui:define name="results">

        Here are my results

    </ui:define>

</ui:composition>

默认模板.xhtml

<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
                      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns:ui="http://java.sun.com/jsf/facelets">

<h:head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"></meta>
    <title>#{title}</title>
</h:head>

<h:body>

    <ui:include src="included-page.xhtml" />

</h:body>

</html>

包含的page.xhtml

<ui:composition xmlns="http://www.w3.org/1999/xhtml"
    xmlns:ui="http://java.sun.com/jsf/facelets">

    <ui:insert name="results">

    </ui:insert>

</ui:composition>
4

1 回答 1

2

<ui:include>应该是一个<ui:decorate>.

<ui:decorate template="included-page.xhtml" />

但是,如果included-page.xhtml它本身没有在其他地方重用,我想知道为什么它不只是被内联在主模板中。

也可以看看:

于 2012-11-01T16:01:43.470 回答