码迷,mamicode.com
首页 > 其他好文 > 详细

foreach

时间:2018-12-31 19:18:46      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:ids   size   使用   效果   pen   lis   length   cti   integer   

使用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

标签:ids   size   使用   效果   pen   lis   length   cti   integer   

原文地址:https://www.cnblogs.com/thaipine/p/10202578.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!