Validator验证信息的循环输出

代码:
Map<String, Object> map = new HashMap<>();
Enumeration<String> attributeNames = c.getRequest().getAttributeNames();
while (attributeNames.hasMoreElements()) {
    String key = attributeNames.nextElement();
        //String keyType = c.getRequest().getAttribute(key).getClass().getName();
        Object value = c.getRequest().getAttribute(key);
        map.put(key, value);
}
c.setAttr("map", map);
前台输出:
#for( map : map)
#(map.value)
#end


评论区

JFinal

2017-02-26 18:39

感谢分享,赞一个

热门分享

扫码入社