我有这段代码在我的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>
但我看到的是:
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>
1条答案
按热度按时间k3bvogb11#
如果male属性是boolean,只需删除引号,如下所示