问题描述
- velocity页面怎么获取List<Map>中的值,就是获取list集合中的值
-
@RequestMapping("my-team")
public String myTeam(ModelMap model){
this.setLayout(LayoutType.STUDENT);
String employeeCode= CurrentUserUtil.getCurrentUserName();
List list=employeePhotoService.queryEmployPhoto(employeeCode);
model.put("list", list);
System.out.println(list);
return "jquery-orgchart-master/demo/myteam";
}
解决方案
List&Map用循环获取集合中的值
EL表达式获取map和list集合中的值
ftl页面中获取map值
时间: 2024-12-15 09:56:02