foreach
Posted thaipine
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了foreach相关的知识,希望对你有一定的参考价值。
使用List:
<!-- ids为List<Integer> -->
<if test="ids!=null and ids.size()>0">
<!-- 方法1:foreach达到的效果: (t.id=1 or t.id=2 or t.id=3)
and <foreach collection="ids" index="index" item="item" open="(" separator="or" close=")">
t.id=#{item}
</foreach> -->
<!-- 方法2:foreach达到的效果:(1,2,3) -->
and t.id in <foreach collection="ids" index="index" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</if>
使用int[]:
<!-- ids为int[] -->
<if test="ids!=null and ids.length>0">
<!-- 方法1:foreach达到的效果:(t.id=1 or t.id=2 or t.id=3)
and <foreach collection="ids" index="index" item="item" open="(" separator="or" close=")">
t.id=#{item}
</foreach> -->
<!-- 方法2:foreach达到的效果:(1,2,3) -->
and t.id in <foreach collection="ids" index="index" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</if>
以上是关于foreach的主要内容,如果未能解决你的问题,请参考以下文章