首页 > 代码库 > thymeleaf标签 th:each的使用
thymeleaf标签 th:each的使用
<div class="item active" th:if="${iterStat.index==0}" th:each="img,iterStat:${pics}">
<img th:src="http://www.mamicode.com/${img.path}" style="width: 303px;height: 171px;"/>
</div>
解说:
对arrayList对象pics遍历,使用img作为接受参数接收,使用iterStat作为pics下标值,通过iterStat.index得到当前所处下标值;
通过th:src="http://www.mamicode.com/${img.path}"得到对象中图片路径设置图片显示图
<tr th:each="prod,iterStat : ${prods}" th:class="${iterStat.odd}? ‘odd‘"> <td th:text="${prod.name}">Onions</td> <td th:text="${prod.price}">2.41</td> <td th:text="${prod.inStock}? #{true} : #{false}">yes</td> </tr>
解说:
判断下标是否未奇数,设置tr样式
thymeleaf标签 th:each的使用
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。