gpt4 book ai didi

thymeleaf - 在 thymeleaf 中包含 html 页面

转载 作者:行者123 更新时间:2023-12-03 16:44:31 25 4
gpt4 key购买 nike

我有 2 个 HTML 文件,假设 one.html 和 two.html。在 one.html 中我想包含 two.html。

在 JSF 中,我可以这样做:

这意味着在 one.xhtml 文件中,我可以包含 two.xhtml。

我们如何在 *.html 文件中做到这一点?在 thymeleaf

最佳答案

你可以轻松做到。你能分享你的header.html吗?文件?

或者,让我展示一下我为我的项目所做的

header.html<body>放在一边一个代码:

<div th:fragment="client_header">
<p>This is for client</p>
</div>

<div th:fragment="admin_header">
<p>This is for admin</p>
</div>

假设您要添加 client_headerindex.html .请在您的 index.html 中遵循这些页面(内 <body>)
<div th:replace="includes/header :: client_header">
</div>

注: includes/header之前 ::指的是 html 路径(不包括 .html )和 client_header之后 ::引用 header.html 中的部分你想插入。

我希望你明白我在这里解释的一切。

关于thymeleaf - 在 thymeleaf 中包含 html 页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23538693/

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