Java:thymeleaf模板引擎

一、thymeleaf模板引入html

通用的底部footer.htmlide

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">

<footer th:fragment="common">  
	<!--底部内容-->
</footer>

</html>

index.html引入spa

<!-- include只是加载 -->
<div th:include="footer :: common"></div>

<!-- replace是替换 -->
<div th:replace="footer :: common"></div>
相关文章
相关标签/搜索