gpt4 book ai didi

JSF 模板 : rendered page missing DOCTYPE

转载 作者:行者123 更新时间:2023-12-04 15:57:04 25 4
gpt4 key购买 nike

TL;DR:我无法让 DOCTYPE 标题出现在我的 JSF 页面上。

我刚刚继承了一个 JSF 1.2 项目,该项目在 IE 下存在一些显示问题。我是 JSF 的新手,但我认为问题源于渲染页面(来自“查看源代码”)不包含正确的 DOCTYPE .

页面由多个部分组成,使用多层 <ui:composition> 组合在一起.典型的页面如下所示:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE composition 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"
template="../layout/template.xhtml">

<ui:define name="body">
<!-- html content goes here... -->
</ui:define>
</ui:composition>

然后是 ../layout/template.xhtml有:

<ui:composition xmlns="http://www.w3.org/1999/xhtml"
template="./headertemplate.xhtml">

<ui:define name="menuSelection">
<ui:insert name="menuSelection"/>
</ui:define>
<ui:define name="body">
<ui:insert name="body"/>
</ui:define>
<ui:define name="footer">
<div class="footer">
<ui:include src="footer.xhtml"/>
</div>
</ui:define>
</ui:composition>

最后,headertemplate.xhtml :

<!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"
contentType="text/html">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<body>
<ui:insert name="body" />
</body>
</html>
</ui:composition>

我遗漏了许多 xmlns为简洁起见;我希望你能明白。

如何让 DOCTYPE 显示在呈现的页面中?

最佳答案

删除 <ui:composition>来自您的 ma​​ster 模板,即 headertemplate.xhtml .它不属于那里。 <ui:composition>将剥离标签之外的所有其他内容。

<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<ui:insert name="body" />
</body>
</html>

请注意,模板定义文件(使用 <ui:composition> 的文件)中的 doctype(和 xml)声明是不必要的。只需删除它们。

另见:

关于JSF 模板 : rendered page missing DOCTYPE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7505219/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com