Thymefelaf th:给定html标签的类属性中的文本

时间:2019-04-02 15:31:08

标签: twitter-bootstrap spring-boot thymeleaf

我有一个Spring Boot,Thymeleaf和Bootstrap应用程序。我在GUI中有很多组件,其中一些共享相同的引导程序颜色值。我经常更改颜色,遍历代码并查找和更新具有相同颜色的所有组件确实很麻烦。

我想做这样的事情:

在我的messages.properties文件中,我将看到以下内容:

login_modal_header_color=purple darken-4

并能够在这样的类属性中获取该值:

<div class="modal-header text-center th:text='#{login_modal_header_color}'">

问题是,当您在th:text='#{login_modal_header_color}'内使用" "时,它只是一个文本,而百里香叶却没收起来。

1 个答案:

答案 0 :(得分:2)

应使用th:classappend

<div class="modal-header text-center" th:classappend="#{login_modal_header_color}">