首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

freemarker 遍列list<map>

2012-08-15 
freemarker 遍列listmapJava代码:List list new ArrayList()Map map1 new HashMap()map1.put(pho

freemarker 遍列list<map>
Java代码:

List list = new ArrayList();
Map map1 = new HashMap();
map1.put("phone", "13655555555");
map1.put("email", "admin@vip.com");
map1.put("address", "china");
list.add(map1);

Map map2 = new HashMap();
map2.put("phone", "13888888888");
map2.put("email", "china@vip.com");
map2.put("address", "beijing");
list.add(map2);




test.ftl文件:

<#list list as map>
<#list map?keys as itemKey>
     <#if itemKey="phone">
     Phone:${map[itemKey]}
     </#if>
     <#if itemKey="email">
     Email:${map[itemKey]}
     </#if>
     <#if itemKey="address">
     Address:${map[itemKey]}
     </#if>
</#list><br/>
</#list>

热点排行