概述
复杂的list集合里面map,map里面套有list2集合,list2里面还有map
List<Map<String,Object>> typeList=new ArrayList<Map<String,Object>>();
for(MerchantSettledTypeInfo merchantSettledType:merchantSettledTypeSet){
Map<String,Object> typeMap=new HashMap<String,Object>();
ProductTypeInfo type=merchantSettledType.getProductType();
typeMap.put("id", type.getId());
typeMap.put("name", type.getName());
//商品分类list,里面若干个分类map
List<Map<String,String>> categoryList=new ArrayList<Map<String,String>>();
List<ProductCategoryInfo> categoryList =merchantSettledType.getProductCategoryListId());
for( ProductCategoryInfo cate: categoryList){
Map<String,String> categoryMap=new HashMap<String,String>();
categoryMap.put("id", cate.getId().toString());
categoryMap.put("name", cate.getName());
categoryList.add(categoryMap);
}
typeMap.put("categoryList", categoryList);
typeList.add(typeMap);
前台ftl 页面代码:
<#list productTypeCateList as middleMap>
<tr>
<td>${middleMap.name!}</td>
<#list middleMap.categoryList as cateMap>
<td>${cateMap.phone!}</td>
</#list>
</tr>
</#list>
最后
以上就是优秀墨镜为你收集整理的freemarker 从List集合取一个Map集的全部内容,希望文章能够帮你解决freemarker 从List集合取一个Map集所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复