Thymeleaf文本模板中的文字[]

时间:2018-05-09 21:29:12

标签: thymeleaf

在“TEXT”模式模板中,有没有办法输出如下内容:

Foo [1]

基于变量?

这样的东西似乎没有正确解析:

Foo [[(${foo})]]

1 个答案:

答案 0 :(得分:1)

这些工作取决于您的格式偏好:

-- using string concatenation
Foo [(${'[' + foo + ']'})]

-- using literal substitution
Foo [(|[${foo}]|)]

-- more verbose
Foo [# th:text="${'[' + foo + ']'}" /]
Foo [# th:text="|[${foo}]|" /]