Thymeleaf:添加到现有值,而不是替换它们

有没有办法告诉Thymeleaf您将参数添加到标签中而不是覆盖它们?

例:

 <div class="a" th:class=${x ? 'b' : 'c'}>

应该导致

<div class="a b">

要么

<div class="a c">

问候

回答:

另一种方法是

th:attr="class=|a ${x ? 'b' : 'c'}|"

以上是 Thymeleaf:添加到现有值,而不是替换它们 的全部内容, 来源链接: utcz.com/qa/412095.html

回到顶部