thymeleaf模板th:each循环

Posted ixtao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thymeleaf模板th:each循环相关的知识,希望对你有一定的参考价值。

<div class="media" th:each="question:${questions}">
    <div class="media-left">
        <a href="#">
            <img class="media-object img-rounded" th:src="${question.user.avatarUrl}">
        </a>
    </div>
    <div class="media-body">
        <h4 class="media-heading" th:text="${question.title}"></h4>
        <span th:text="${question.description}"></span><br>
        <span class="text-color-999"><span th:text="${question.viewCount}"></span> 次浏览 ? <span th:text="${question.commentCount}"></span> 个评论 ? <span th:text="${#dates.format(question.gmtCreate,‘dd MMMM yyyy‘)}"></span></span>
    </div>
</div>
  

  

以上是关于thymeleaf模板th:each循环的主要内容,如果未能解决你的问题,请参考以下文章

4)Thymeleaf th:each 循环迭代与 th:ifth:switch 条件判断

Thymeleaf模板引擎语法

Thymeleaf---基础知识

zbb20171221 thymeleaf th:each

thymeleaf的th:each怎么遍历js中的数组?

Thymeleaf(第九十一二章)本地变量#属性优先级#注释和块#内联