作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 Spring Boot 应用程序中有以下项目结构 -
/templates/home/index.html
/templates/includes/header.html
我想将头文件包含在索引文件中。我已经尝试过该链接 - https://stackoverflow.com/questions/23538693/include-html-page-in-thymeleaf#=
但是冒号“::”显示错误。
我是 thymeleaf 新手。有人能解释一下吗?谢谢。
最佳答案
感谢所有试图帮助我的人。我解决了这个问题,如下 -
//header.html
<div th:fragment="header">
<!-- related code of header file >
</div>
//index.html
//to include header follow the code( the header file is inside includes directory)
<div th:replace="/includes/header :: header"> </div>
关于spring - 如何在 thymeleaf 中将一个 html 页面包含到另一页面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50782748/
我是一名优秀的程序员,十分优秀!