Thymeleaf布局方言和th:替换头部导致标题为空白

时间:2014-10-29 16:48:22

标签: layout thymeleaf dialect

我正在学习本教程:http://www.thymeleaf.org/doc/layouts.html(参见Thymeleaf Layout Dialect部分)。 在那里你可以找到一个例子:

<!DOCTYPE html>
<html>
  <head>
  <!--/*  Each token will be replaced by their respective titles in the resulting page. */-->
    <title layout:title-pattern="$DECORATOR_TITLE - $CONTENT_TITLE">Task List</title>
    ...
  </head>
  <body>
    <!--/* Standard layout can be mixed with Layout Dialect */-->
    <div th:replace="fragments/header :: header">
    ...
    </div>
    <div class="container">
      <div layout:fragment="content">
      ...
      </div>
      <div th:replace="fragments/footer :: footer">&copy; 2014 The Static Templates</div>
    </div>
  </body>
</html>

在上面的示例中,页脚和标题已替换为th:replace标记,而<head>在布局文件中包含<title>标记。

基本上,我想用<head>替换整个th:replace标记。 因此,我有:

我的布局文件:

<!DOCTYPE html>
<html>
<head th:replace="/html/components/head :: head">
</head>
<body>
     <div layout:fragment="content">
     </div>
...
     <div th:replace="/html/components/footer :: footer" />
</body>
<html>

我的内容文件:

<!DOCTYPE html>
<html layout:decorator="/html/layouts/layout">
<head>
    <title>My content title</title>
</head>
<body>
      <div layout:fragment="content">
      ...
      </div>
</body>
</html>

最后我的/html/components/head.htm文件:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
  xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout">
<head th:fragment="head">
<meta charset="utf-8" />
<title layout:title-pattern="$CONTENT_TITLE">Layout Title should be replaced by Content Title!</title>
...
</head>
<body>
</body>
</html>

内容没问题。页脚和头部按预期包含(替换)在文件中,但页面标题为空白!

我明白了:

<!DOCTYPE html>
<head>
<meta charset="utf-8" />
<title></title>
...

怎么了?

3 个答案:

答案 0 :(得分:30)

最后,我找到了实现我想要的方法。

在布局文件<title>标记必须保留。我用<object>标记的所有其他标签,并注释如下:

<head>
  <title layout:title-pattern="$CONTENT_TITLE">Layout Title will be replaced by Page Title!</title>
  <object th:include="/html/components/head :: head" th:remove="tag" />
</head>

在我的html / components / head.htm文件中,我必须删除<title>标记,以便在包含后不会重复。

<head th:fragment="head">
  <meta charset="utf-8" />
  <!-- NO TITLE TAG HERE -->
  ...
</head>

这样,<object>标记中的头部片段包含,感谢th:remove="tag" <object>标记被删除,我的最终HTML输出为:

<head>
  <title>My content title</title>
  <meta charset="utf-8" />
  <!--  NO TITLE TAG HERE -->
  ...
</head>

显然,一旦我开始工作,我也删除了NO TITLE TAG HERE消息。

答案 1 :(得分:7)

我认为我发现使用th:replaceth:fragment的方式略显冗长,例如在您的网页中包含常见的<head>元数据和静态资源。

th:remove="tag"放在片段定义中,这样您就不必每次都重复th:remove="tag"

fragment_head.html

<thymeleaf xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" 
    th:fragment="head" th:remove="tag">

    <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <link rel="stylesheet" th:href="@{/css/vendor/bootstrap.min.css}"/>

</thymeleaf>

的mypage.html

<head>
    <thymeleaf th:replace="fragment_head :: head" />
</head>

答案 2 :(得分:1)

您可以替换整个头部标签。

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head lang="pl" th:replace="fragments/head :: head">
</head>
<body>
 ...
</body>
</html>

资源/模板/片段/ head.html:

    <head lang="pl">
        <title>Title</title>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
        <link href="http://cdn.jsdelivr.net/webjars/bootstrap/3.3.5/css/bootstrap.min.css"
              th:href="@{/webjars/bootstrap/3.3.5/css/bootstrap.min.css}"
              rel="stylesheet" media="screen" />

        <script src="http://cdn.jsdelivr.net/webjars/jquery/2.1.4/jquery.min.js"
                th:src="@{/webjars/jquery/2.1.4/jquery.min.js}"></script>
        <link href="../static/css/mycss.css"
              th:href="@{css/mycss.css}" rel="stylesheet" media="screen"/>
    </head>