百里香叶和状况与列表大小

时间:2018-07-17 13:41:04

标签: thymeleaf

我使用百里香3,并尝试在条件中使用“和”并在条件中使用列表的大小

<div th:if="${param.isGenerated and #lists.size(param.options) lt 1}" th:remove="tag">
    <label th:text="${param.value}"></label>
</div>

我收到此错误

  

org.attoparser.ParseException:评估SpringEL的异常   表达式:

1 个答案:

答案 0 :(得分:1)

尝试

${param.isGenerated and #lists.isEmpty(param.options)}