java中的条件句

sg2wtvxw  于 2021-06-26  发布在  Java
关注(0)|答案(1)|浏览(213)

我有这段代码在我的thymeleaf模板中

<INPUT TYPE="text" TH:VALUE="${searchForm.male}" />
<span th:if="${searchForm.male == 'true' }">
   IS TRUE
</span>
<span th:unless="${searchForm.male == 'true'}">
   IS NOT TRUE
</span>

但我看到的是:

k3bvogb1

k3bvogb11#

如果male属性是boolean,只需删除引号,如下所示

<input type="text" th:value="${searchForm.male}"/>
<span th:if="${searchForm.male == true }">IS TRUE</span>
<span th:unless="${searchForm.male == true}">IS NOT TRUE</span>

相关问题