java 代码中将一个LinkedHashMap对象返回到页面上
html代码中这样写
#if( downloadMap.keySet().size() > 0 ) #for(key : downloadMap.keySet()) #(key) #end #end
报错
com.jfinal.render.RenderException: com.jfinal.template.TemplateException: Class com.jfinal.template.expr.ast.MethodInfo can not access a member of class java.util.LinkedHashMap$LinkedKeySet with modifiers "public final"
#for( x : downloadMap)
#(x.key)
#(x.value)
#end