작성
·
459
0
base.html의 코드 일부입니다.
<head th:fragment="common_header(title,links)">
<title th:replace="${title}">레이아웃 타이틀</title>
...
<!-- 추가 -->
<th:block th:replace="${links}" />
</head>
<title>을 넘기지 않았더니 exception이 발생했습니다.
태그를 반드시 넘겨야 하는 것이라면, 그래서 <title>이 교체될 것이라면 위 코드에서 <title>, '레이아웃 타이틀'을 작성하지 않아도 되는 것가요?
<title> 대신 큰 의미없는 <div>나 (5번째 줄에서 작성한) <th:block>을 사용해도 되는 것인가요?
답변 1
0
<title>을 넘기지 않았더니 exception이 발생했습니다.
=> 다음과 같은 에러가 발생합니다.
[THYMELEAF][http-nio-8080-exec-2] Exception processing template "template/layout/layoutMain": Error resolving fragment: "${title}": template or fragment could not be resolved (template: "template/layout/base" - line 4, col 12)
태그를 반드시 넘겨야 하는 것이라면, 그래서 <title>이 교체될 것이라면 위 코드에서 <title>, '레이아웃 타이틀'을 작성하지 않아도 되는 것가요?
태그를 넘겨야만 동작하는 이유는 common_header에서 타이틀을 인자로 넘기겠다고 선언했기 때문입니다. 아래와 같이 title을 빼고, common_header를 호출하는 base..html에서 타이틀을 고정된 형태로 사용하면 됩니다.
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head th:replace="template/layout/base :: common_header(~{::link})">
<link rel="stylesheet" th:href="@{/css/bootstrap.min.css}">
<link rel="stylesheet" th:href="@{/themes/smoothness/jquery-ui.css}">
</head>
<body>
메인 컨텐츠
</body>
</html>
<html xmlns:th="http://www.thymeleaf.org">
<head th:fragment="common_header(links)">
<title>레이아웃 타이틀</title>
<!-- 공통 -->
<link rel="stylesheet" type="text/css" media="all" th:href="@{/css/awesomeapp.css}">
<link rel="shortcut icon" th:href="@{/images/favicon.ico}">
<script type="text/javascript" th:src="@{/sh/scripts/codebase.js}"></script>
<!-- 추가 -->
<th:block th:replace="${links}" />
</head>
.
감사합니다.