总结:
3. 模板的语法
访问map中的key
${key}
访问pojo中的属性
Student对象.学号、姓名、年龄
${key.age}
取集合中的数据
<#list 集合 as 循环的变量>
<#list studentList as student>
${student.id}/${studnet.name}
</#list>
取循环中的下标
<#list studentList as student>
${student_index}
</#list>
总结:
3. 模板的语法
访问map中的key
${key}
访问pojo中的属性
Student对象.学号、姓名、年龄
${key.age}
取集合中的数据
<#list 集合 as 循环的变量>
<#list studentList as student>
${student.id}/${studnet.name}
</#list>
取循环中的下标
<#list studentList as student>
${student_index}
</#list>