freemarker中的map和list遍历

2,*.ftl文件。

对List遍历:

<@ww.form action="/order/cartMaintenanceAction!addItemToCart.action" method="post" id="cartFormId">
<#if Session["cartList"]?exists>
<#list Session["cartList"] as item>
//itemList是action中定义的字段。作批量更新使用。
<@ww.hidden name="itemList[${item_index}].id" value="${item.id}"/>
<@ww.textfield name="itemList[${item_index}].name" cssClass="input" value="${item.name}" size="3"/>
</#list>
</#if>
</@ww.form>

对Map遍历:


//Map<String ,Object> Map中的key必为String 型在freemarker 在webwork2.2.2中自己的,更高的版本就不知道可不可能用其他类型,
<@ww.form action="/order/cartMaintenanceAction!addItemToCart.action" method="post" id="cartFormId">
<#if Session["cartMap"]?exists>
<#assign cart = Session["cartMap"]>
<#list cart?keys as itemKey>
<#assign item = cart[itemKey]>
//如果Map中的key是Long类型则用${session.getAttribute("cartMap").get(itemKey).getId}取值。
//itemMap是action中定义的字段。作批量更新使用。
<@ww.hidden name="itemMap[${itemKey}].id" value="${item.id}"/>
<@ww.textfield name="itemMap[${itemKey}].name" cssClass="input" value="${item.name}" size="3"/>

</#list>
</#if>
</@ww.form>

你可能感兴趣的:(freemarker)