首页 > 代码库 > freemarker 遍历 hashmap 到select option
freemarker 遍历 hashmap 到select option
<select id="experience"> <option value ="">--请选择--</option> <#if experience??> <#list experience?keys as key> <option value="http://www.mamicode.com/${key}">${experience[key]}</option> </#list> </#if> </select>
上面是Freemarker 的代码
下面是java的map,,如果Map 的key是Integer 类型 ,Freemarker 的${experience[key]}是取不出值来的
public Map<String,String> getExperienceMap(){ Map<String,String> map = Maps.newHashMap(); map.put("1","实习生"); map.put("2","1年"); map.put("3","1-3年"); map.put("4","3-5年"); map.put("5","5-7年"); map.put("6","7-10年"); map.put("7","10年以上"); map.put("8","不限"); return map; }
这样Map 取不到值
public Map<Integer,String> getDegreeMap(){ Map<Integer,String> map = Maps.newHashMap(); map.put(1,"初中"); map.put(2,"中专"); map.put(3,"高中"); map.put(4,"专科"); map.put(5,"职高"); map.put(6,"本科"); map.put(7,"研究生"); map.put(8,"博士"); map.put(9,"不限"); return map; }
freemarker 遍历 hashmap 到select option
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。