如何在速度模板中迭代嵌套映射?

时间:2017-07-18 08:37:58

标签: java html hashmap velocity

如何在力度模板中迭代嵌套地图? 我有

HashMap<String, HashMap<String, HashMap<String, List<MealPlanGroup>>>> termPlans=new HashMap<String, HashMap<String, HashMap<String, List<MealPlanGroup>>>>(); 

这张地图我在java中填充数据并渲染到html页面但不能在html页面上迭代

1 个答案:

答案 0 :(得分:2)

鉴于你有一个可怕的变量绑定到模板中的termPlans变量,你可以执行以下操作:

#foreach( $level1 in $termPlans )
    <!-- Iterating over the values of the first Map level -->
    #foreach( $level2 in $level1 )
        <!-- Iterating over the values of the second Map level -->
        #foreach( $list in $level2 )
            <!-- Iterating over the values of the third Map level -->
            #foreach( $mealPlanGroup in $list )
                <!-- Iterating over the values of the List -->
                $mealPlanGroup.id <br/>
            #end
        #end
    #end
#end

这只会使用地图值而忽略其键。如果您还需要密钥,则可以尝试迭代entrySet()

#foreach( $level1Entry in $termPlans.entrySet() )
    <!-- Iterating over the values of the first Map level -->
    Level 1 key is $level1Entry.getKey()

    #foreach( $level2Entry in $level1Entry.getValue().entrySet() )
        Level 2 key is $level2Entry.getKey()

        <!-- Iterating over the values of the second Map level -->
        #foreach( $level3Entry in $level2Entry.getValue().entrySet() )
            Level 3 key is $level3Entry.getKey()

            <!-- Iterating over the values of the third Map level -->
            #foreach( $mealPlanGroup in $level3Entry.getValue() )
                <!-- Iterating over the values of the List -->
                $mealPlanGroup.id <br/>
            #end
        #end
    #end
#end
相关问题