我正在建立一个新网站,我希望有多个文件用于可重复使用的组件(页眉、页脚、通用导入、脚本等)。我还想为每个布局(组合我定义的组件)创建文件,如“主应用程序”、“全屏仪表板”等。最后,我想创建只包含我需要的内容的页面,然后将其插入布局我的选择。
像这样的东西:文件图
我看过这个问题,但这需要我在 java 上调用布局,并将我的内容作为参数,而不是在我的内容上定义要使用的布局。
我还考虑过只使用我的“布局”作为模板,然后复制+粘贴到一个新的“内容”文件中并编辑占位符。
这是一个示例控制器:
@View("ticketing/home")
@Get("/")
public HttpResponse home() {
final Map<String, Object> resultMap = new HashMap<>();
resultMap.put("requests", ticketingClient.getSummaryRequests()); //Returns a list of tickets to be displayed.
return HttpResponse.ok(resultMap); //Maps the resultMap variable to the ticketing/home thymeleaf template
}
这就是我想要构建内容文件的方式:
<html>
<head>
<title>Tickets</title>
</head>
<body>
<div>
<p>My Content is here!</p>
<img src="wow.jpeg">
</div>
</body>
</html>
这就是我现在的布局:
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Application Layout</title>
<th:block th:include="./fragments/head.html :: imports"></th:block>
</head>
<body>
<div id="wrapper">
<!-- Sidebar Menu -->
<div th:replace="./fragments/sidebar.html :: sidebar"></div>
<div id="page-wrapper" class="gray-bg">
<!-- Navigation Menu -->
<div th:replace="./fragments/topbar.html :: topbar"></div>
<!-- Page Header -->
<div th:replace="./fragments/pageheader.html :: pageheader"></div>
<!-- Main Content -->
<div class="wrapper wrapper-content animated fadeInUp" th:fragment="content">
<div class="row">
<div class="col-lg-12">
<div class="wrapper wrapper-content">
<p>Content here</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div th:replace="./fragments/footer.html :: footer"></div>
<th:block th:replace="./fragments/scripts.html :: scripts"></th:block>
</body>
</html>
我希望能够使用相同的 java 语法(带有注释)来使用我的视图。
我宁愿在内容文件中进行更多更改,也不愿在布局文件中进行更改。
FFIVE
相关分类