Velocity 解析多层Map

阅读更多
针对Map> 的情况

#foreach($other in ${otherParamMap.keySet()})//这里是遍历第一层Map
	//取出第一层Map的key值
			
			#foreach($key in ${otherParamMap.get($other).keySet()})//这里是遍历第二层Map
				//第二层Map中的key
					//取出第二层Map中的值
				
			#end
			
$other
$key${otherParamMap.get($other).get($key)}
#end


ps: Velocity这玩意没法调试还真是郁闷..来来回回的试了很多次才弄对...

你可能感兴趣的:(velocity)