freemarker在xml文件中遍历list数据

Posted ppjj

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了freemarker在xml文件中遍历list数据相关的知识,希望对你有一定的参考价值。

delete
   from pub_channelpackage
   where channelcode = :channelcode
   and channeltype = :channeltype
   <#if packids?exists && packids??>
    and packid in (
          <#list packids as packageId>
     ${packageId}<#if packageId_has_next>,</#if>
    </#list>)
   </#if>

1.<#if packids?exists && packids??>:表示存在packids对象,并且对象的个数不为0;

2.<#list packids as packageId>:表示list中的成员变量为packageId;

3.<#if packageId_has_next>,</#if>:表示如果循环结束,则不加",".如果不加后面有会多一个",".

 

以上是关于freemarker在xml文件中遍历list数据的主要内容,如果未能解决你的问题,请参考以下文章

freemarker中遍历一个list,得到指定的值 然后以逗号隔开

Web工程中使用Freemarker导出Word出错,XML文件中使用<#list abc as being></#list> 标记报错,不能识别。

使用freemarker的嵌套xml标签遍历

freemarker怎么遍历数组

freemarker如何遍历模板中所有变量

freemarker 遍历list去除重复值问题