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>
相關文章
相關標籤/搜索