如何从Thymeleaf调用对象的方法?

如何从Thymeleaf调用对象的方法?,第1张

如何从Thymeleaf调用对象的方法?

可以在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



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5586918.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-14
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存