Mybatis中foreach对List、实体类、List 的循环

1、List 循环


    #{item}

collection --------  接收的数组(入参)       

index -------- 循环体中的具体对象的序号   item --------  循环体中的具体对象

open --------  开始符号          close --------  关闭符号          separator ------ 分割符号

 

2、实体类、List 循环


       #{student.xm}

collection --------  接收的List 实体类List  或者  List

item --------  循环体中的student对象或者Map

student.xm -------- 所用对象或者Map 的属性

 

 

2019年08月23日

 

 

 

 

你可能感兴趣的:(成长点滴,Mybatis)