我使用百里香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的异常 表达式:
答案 0 :(得分:1)
尝试
${param.isGenerated and #lists.isEmpty(param.options)}