如何使用JSF 2.0 Facelets在XHTML中包含另一个XHTML?在XHTML页面中包含另一个XHTML页面的最正确方法是什么?我一直在尝试不同的方式,但都没有。
2 回答
BIG阳
TA贡献1859条经验 获得超6个赞
包含的页面:
<!-- opening and closing tags of included page --><ui:composition ...></ui:composition>
包括页面:
<!--the inclusion line in the including page with the content--><ui:include src="yourFile.xhtml"/>
ui:composition
如上所示,您可以启动包含的xhtml文件。您将该文件包含
ui:include
在包含xhtml文件中,如上所示。
添加回答
举报
0/150
提交
取消