gpt4 book ai didi

HTML 模板不工作

转载 作者:行者123 更新时间:2023-11-28 05:48:57 24 4
gpt4 key购买 nike

我正在尝试构建一个具有通用页眉/页脚的模板。由于某种原因,我的其他页面没有显示模板

我的页面:

layout/layout.xhtml

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<h:html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets">
<h:head>
<meta charset="ISO-8859-1"/>
<title>Test</title>
<link href="../stylesheet/template.css" rel="stylesheet" type="text/css" />
</h:head>
<h:body>
<div id="templateHearderDiv" class="templateHearder">
<h1> Test logo</h1>
</div>
<div id="content" class="contentBody">
<ui:insert name="content">
default content
</ui:insert>
</div>
<div id="templateFooterDiv" class="templateFooter">
<p> 2016-2017. All Rights Reserved</p>
</div>
</h:body>
</h:html>

CSS,stylesheet/template.css

@CHARSET "ISO-8859-1";

* { margin:0; padding:0; }

.templateHearder{
background: #FFCF75;
height: 10%;
}
.contentBody{
}
.templateFooter{
height: 10%;
background: #FFCF75;
}
.contentBody{
margin-left: 20%;
margin-right: 20%;

}
.logoFont{
font-family: "Impact";
padding-top: 10px;
}

home.xhtml

<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets"
template="/layout/layout.xhtml">
<ui:define name="content">
<h2>This is page1 content</h2>
</ui:define>
</ui:composition>

home.xhtml 是我的欢迎页面,当我看到那个页面时,模板没有显示。

有什么线索吗?

最佳答案

问题出在 web.xml 中的 servlet 映射。了解它们的重要性。

关于HTML 模板不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37452957/

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