If-Else in a th:each statement in Thymeleaf

后端 未结 2 1996
灰色年华
灰色年华 2021-02-03 15:16

What I want is an if-else in a th:each statement in Thymeleaf.

If currentSkill != null, then show table with content, else \'You don\'t have any skills\'

相关标签:
2条回答
  • 2021-02-03 16:09

    You can use

    <div  th:if="${!currentSkills.isEmpty()}">
        <table>
             <tr th:each="skill : ${currentSkills}"><td th:text="${skill.name}"/></tr>
        </table>
    </div>
    
    0 讨论(0)
  • 2021-02-03 16:13
    <div  th:if="${currentSkills != null}">
        <table>
             <tr th:each="skill : ${currentSkills}"><td th:text="${skill.name}"/></tr>
        </table>
    </div>
    <div th:if="${currentSkills == null}">
       You don't have any skills
    </div>
    

    If currentSkills is a list, you can use the #lists utility like so (which is more correct than the above code since it also takes into account the possibility where the object is not null but is empty):

     <div  th:if="!${#lists.isEmpty(currentSkills)}">
        <table>
             <tr th:each="skill : ${currentSkills}"><td th:text="${skill.name}"/></tr>
        </table>
    </div>
    <div th:if="${#lists.isEmpty(currentSkills)}">
       You don't have any skills
    </div>
    

    You could do the same if currentSkills is an array by just replacing #lists with #arrays.

    Note that in both cases isEmpty() returns true whether the object is null or has zero items.

    0 讨论(0)
提交回复
热议问题