发布网友 发布时间:2022-04-22 08:38
共2个回答
热心网友 时间:2024-11-17 09:25
<#if clientSourceData?exists>
<#list clientSourceData?keys as key>
<tr>
<td>${key}</td>
<td>${clientSourceData.get(key)}</td>
</tr>
</#list>
</#if>
直接嵌套在循环里面即可
热心网友 时间:2024-11-17 09:25
第二种方式
<#list testMap.keySet() as testKey>
< option value="${testKey}" >
${testMap.get(testKey)}
</option>
</#list>