我正在尝试使用包含条件运算符的纯文本处理百里香模板:
<th:block th:if = "${[(${test})] == true}"> it works </th:block>
但是我有这样的输出:
<th:block th:if = "${true == true}"> it works </th:block>
你能告诉我,我哪里出问题了?
答案 0 :(得分:0)
如果您使用的是textual template modes,则不能再使用<th:block />
之类的html标签。而是,语法看起来像这样:
[# th:if="${test}"]it works[/]