我是靠谱客的博主 紧张大地,最近开发中收集的这篇文章主要介绍freemarker List 遍历换行,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

需求:将list中的值遍历为两列,且当list个数为奇数时添加一个空行列    

<#list (orders.attributeItems["xx"])?split(",") as item>
                                    
                                    <#if (item_index+1) % 2 == 0>
                                            <td><button>${(item_index+1)}档:${(item)!''}元
                                            ${((orders.attributeItems["xx"])?split(","))?size}</button></td>
                                           </tr>
                                       <#elseif (((orders.attributeItems["xx"])?split(","))?size  % 2 == 1 )  
                                       &&  ((item_index+1) % ((orders.attributeItems["xx"])?split(","))?size ==0)>
                                           <tr>
                                            <td><button>${(item_index+1)}档:${(item)!''}元</button></td>
                                           <td> </td>
                                           </tr>
                                       <#else>
                                           <tr>
                                            <td><button>${(item_index+1)}档:${(item)!''}元</button></td>
                                       </#if>
 </#list>

Ps:

(orders.attributeItems["xx"])?split(","):将字符串划分为list集合。

((orders.attributeItems["xx"])?split(","))?size  % 2 == 1 :通过集合长度判断是否为奇数列

item_index+1:集合下标(从1开始)

转载于:https://my.oschina.net/u/3530220/blog/1559689

最后

以上就是紧张大地为你收集整理的freemarker List 遍历换行的全部内容,希望文章能够帮你解决freemarker List 遍历换行所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(41)

评论列表共有 0 条评论

立即
投稿
返回
顶部