Velocity遍历Map对象
#foreach($item in $!indexMap.entrySet())
输出Map的key: $!{item.key}
输出Map的value:$!{item.value}
如果Map的value是一个list,还可以继续遍历
#foreach ($listItem in $!{item.value})
输出list属性:$listItem
#end
#end
#foreach($item in $!indexMap.entrySet())
输出Map的key: $!{item.key}
输出Map的value:$!{item.value}
如果Map的value是一个list,还可以继续遍历
#foreach ($listItem in $!{item.value})
输出list属性:$listItem
#end
#end