Python 官方文档:入门教程 => 点击学习
目录mybatis多个区间处理思路多个foreach同时使用问题应用场景注意事项解决方案mybatis多个区间处理 如图:要实现车辆数不同区间查询条件 思路 a.前端传数组,数
如图:要实现车辆数不同区间查询条件
a.前端传数组,数组里面放"1-5"String类型值
b.后端mybatis用双foreach循环解析
后端代码如下:
<!--图例车辆数区间-->
<if test="countCarGoList != null and countCargoList.size>0" >
and (
<foreach item="item" index="index" collection="countCargoList">
(
<foreach item="item2" index="index2" collection="item.split('-')">
<if test="index2%2==0">
sfi.count_cargo >= #{item2}
</if>
<if test="index2%2==1">
and sfi.count_cargo <= #{item2}
</if>
</foreach>
)
<!--最后一次不用加or-->
<if test="index != countCargoList.size-1" >
or
</if>
</foreach>
)
</if>
1、多个表的数据一起删除的时候,有的时候不会建立外键,但主表的关联 表很多的时候,可以直接利用mybatis 进行多表删除。
mybatis 中多个foreach 循环,第一次循环的collection 看到的值是一个(数组、list、map、对象,由collection的配置主导)。
第二次foreach 是直接copy第一个foreach的对象值,这个时候会一直累加对象。
数组为例
dao层去掉@Param注解
void batchDeleteSysTransferReGISt(String rowData[]);
mybatis
<delete id="batchDeleteSysTransferRegist" parameterType="string">
delete from sys_transfer_regist_item where transfer_regist_id in
<foreach item="rowData" collection="array" open="(" separator="," close=")">
#{rowData}
</foreach>
;delete from sys_transfer_regist_piece where transfer_regist_id in
<foreach item="rowData1" collection="array" open="(" separator="," close=")">
#{rowData1}
</foreach>
......
</delete>
切记;隔开。
以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。
--结束END--
本文标题: mybatis多个区间处理方式(双foreach循环)
本文链接: https://lsjlt.com/news/138360.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0