Velocity 解析多层Map

Velocity 解析多层Map

文章分类:Web前端

针对Map<String,Map<String,List>> 的情况

Java代码 复制代码
  1. #foreach($other in ${otherParamMap.keySet()})//这里是遍历第一层Map   
  2.     <table class="table_A">   
  3.         <caption>$other</caption>//取出第一层Map的key值   
  4.             <tbody>   
  5.             #foreach($key in ${otherParamMap.get($other).keySet()})//这里是遍历第二层Map   
  6.                 <tr>   
  7.                     <th>$key</th>//第二层Map中的key   
  8.                      #foreach($grouponinfo in ${otherParamMap.get($other).get($key)}) //取出第二层Map中的值  遍历里List
  9.                         <td>$grouponinfo.id</td>//取出第二层Map中的值 
  10.                       #end
  11.                 </tr>   
  12.             #end   
  13.             </tbody>   
  14.     </table>   
  15.     #end  

你可能感兴趣的:(Web,velocity)