我有2个基本模板 - 一个带侧边菜单,一个没有 - 两个ui:包含一个包含ui的公共页面:插入标签(模板很大,下面是基本示例)。
使用Mojarra一切正常,但现在我已经迁移到MyFaces ui:insert标签被忽略,相关ui:define的内容没有被渲染(即'这里是我的结果'没有显示)。
我应该以某种方式将included-page.xhtml指定为模板吗?我试过了
<ui:composition template="included-page.xhtml" />
而不是
<ui:include src="included-page.xhtml" />
但丢失了CSS。
希望有人可以提出解决方案:)
非常感谢,
尼尔
MY-page.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>
默认的template.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>
答案 0 :(得分:2)
<ui:include>
应该是<ui:decorate>
。
<ui:decorate template="included-page.xhtml" />
但如果included-page.xhtml
本身没有在其他地方重复使用,我想知道为什么它不是仅仅在主模板中内联。