freemarker list map 遍历区别#list userList as listList对象user的值:${list.userId}List的value:${li
freemarker list map 遍历区别
<#list userList as list>
List
对象
user
的值
:${list.userId}
List
的
value:${list.userName}
</#list>
Map
<#list scMap?keys as myKey>
Map key is:${myKey}
map value is:${scMap[myKey]}
</#list>
