我是靠谱客的博主 懦弱日记本,最近开发中收集的这篇文章主要介绍freemarker循环获取list中map的值,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1.数据结构

List<Map<String,Object>> mapList = Lists.newArrayList();
Long originalOrderId = returnObj.getOriginalOrderId();
List<Long> orderIdList = Lists.newArrayList();
orderIdList.add(originalOrderId);
List<Item> itemList = itemService.listByOrderIdList(orderIdList);
for (Item item : itemList) {
	
	Map<String,Object> map = Maps.newLinkedHashMap();
	if(item != null){
		Product product = item.getProduct();
		if(product == null){
			product = productService.get(item.getProductId());
		}
		if(product != null){
			map.put("productName", product.getName());
		}
		List<SpecJsonItem> specList = item.getSpecItemList();
		if(CollectionUtils.isEmpty(specList)){
			specList = JSON.parseArray(item.getSpecJson(), SpecJsonItem.class);
		}
		if(CollectionUtils.isNotEmpty(specList)){
			StringBuffer spec = new StringBuffer();
			for (SpecJsonItem specJsonItem : specList) {
				spec.append(specJsonItem.getName()).append(":").append(specJsonItem.getValue()).append(" ");
			}
			map.put("spec", spec);
		}
	}else{
		item = new Item();
	}
	map.put("item", item);
	mapList.add(map);
}

model.addAttribute("mapList", mapList);
2.前端页面循环

<#list mapList as map>
	<tr class="product_${map_index}">
		<td>商品名称:</td>
		<td>${map['productName']}</td>
		<td rowspan="2">商品图片:</td>
		<td rowspan="2"><img src="${imageDomain}/${map['item'].pic}@200w"></td>
	</tr>
	
	<tr class="product_${map_index}">
		<td>购买规格:</td>
		<td>${map['spec']}</td>
	</tr>
	
	<tr class="product_${map_index}">
		<td>购买价格:</td>
		<td>${map['item'].price}</td>
		<td>购买数量:</td>
		<td>${map['item'].quantity}</td>
	</tr>
</#list>



最后

以上就是懦弱日记本为你收集整理的freemarker循环获取list中map的值的全部内容,希望文章能够帮你解决freemarker循环获取list中map的值所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(45)

评论列表共有 0 条评论

立即
投稿
返回
顶部