可以在Thymeleaf中以两种方式完成此 *** 作:
首先是对Thymeleaf使用special:
<head th:fragment="publicSiteHeader"> <title>SOME TITLE</title> <th:block th:text="${CSSProcessor.setDebugCaller("Public")}"/> <th:block th:text="${CSSProcessor.setSiteRegion("public")}"/> <th:block th:text="${CSSProcessor.addCSS("/css/main.css")}"/></head>
第二种方法是:
<head th:fragment="publicSiteHeader" th:inline="text"> <title>SOME TITLE</title> [["${CSSProcessor.setDebugCaller("Public")}"]] [["${CSSProcessor.setSiteRegion("public")}"]] [["${CSSProcessor.addCSS("/css/main.css")}"]]</head>
对于自然模板处理,第二个选项更可取。有关内联的更多信息,请参见:http
:
//www.thymeleaf.org/doc/tutorials/2.1/usingthymeleaf.html#inlining
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)