您的位置:首页 > 其它

Mybatis中 if test 判断数值字符串注意项

2017-11-08 11:20 344 查看
<if test="cutList != null">
<if test="isInterrupt == '1'.toString() ">
AND A.basic_id IN (
<foreach collection="cutList" item="item" index="index" separator="," >
#{item}
</foreach>
)
</if>
<if test="isInterrupt == '0'.toString() ">
AND A.basic_id NOT IN (
<foreach collection="cutList" item="item" index="index" separator="," >
#{item}
</foreach>
)
</if>
</if>

1. Mybatis中 if test 判断数值字符串注意项

if test 判断是否为某一数值字符串时需在数值字符串后加上toString()方法
如:
<if test="isInterrupt == '1'.toString() ">

2. Mybatis中遍历list入参

此处还有个知识点是mybatis使用foreach标签来遍历入参list。
如:
<if test="isInterrupt == '1'.toString() ">
AND A.basic_id IN (
<foreach collection="cutList" item="item" index="index" separator="," >
#{item}
</foreach>
)
</if>



collection为需遍历数组,item为当前循环的变量,index为计数器,separator=","指循环一次则以“,”分隔

这里IN 的()可以直接用open="(" close=")"属性设置

<foreach collection="cutList" item="item" index="index" open="(" close=")" separator="," >
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐