freemarker list怎么遍历 多行每行显示4个
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了freemarker list怎么遍历 多行每行显示4个相关的知识,希望对你有一定的参考价值。
参考技术A <c:forEach>还有个varStatus属性。varStatus.index就是在遍历里面得到当前行数。<c:forEach var="" items="" varStatus="status">
<c:if test="$status.index % 4 == 0">
<br /> <!-- 是表格就加个<tr></tr> -->
</c:if>
</c:forEach>
Freemarker如何遍历List<String>集合?
List<String> termList = new ArrayList<String>();
termList.add("111");
termList.add("222");
termList.add("333");
前台jsp页面遍历集合
[#list terms as term]
<li><a href="#">$term</a></li>
[/#list]
这样输出为什么没有值?
</#list>
以上是关于freemarker list怎么遍历 多行每行显示4个的主要内容,如果未能解决你的问题,请参考以下文章