XML中的foreach
Posted aaron95
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了XML中的foreach相关的知识,希望对你有一定的参考价值。
foreach元素的属性主要有 collection,item,index,separator,open,close。
collection:表示集合,数据源
item :表示集合中的每一个元素
index :用于表示在迭代过程中,每次迭代到的位置
separator :表示在迭代时数据以什么符号作为分隔符
open :表示该语句以什么开始
close :表示以什么结束
代码示例:
data数据类型为List<Map<String,object>>
update order_info o set o.state=#state
<where>
<if test="data!=null">
<foreach collection="data" item="map" index="index" separator=",">
or o.id=#map.orderId
</foreach>
</if>
</where>
以上是关于XML中的foreach的主要内容,如果未能解决你的问题,请参考以下文章