控制器编码
List<Map<String,Object>> rows=globalDao.list("select * from hosp_conf");
System.out.println(rows.get(0).get("hosp_id"));
model.addObject("list",rows);
return model;
查看档案
<input type="text" name="name" value="${rows.get(0).get("hosp_name")}" required>
我想使用特定索引以弹簧形式访问我的list元素。
上面的Sysout stament在控制台中打印excat值
我如何访问它?
答案 0 :(得分:1)
在jsp中,您可以使用语法访问列表索引 - $ {列表[索引]}。
在你的jsp [中,你需要使用你在控制器中添加的模型属性名称。所以不要使用你需要使用列的行。
我不知道列表中的对象。但你可以尝试这样 -
<input type="text" name="name" value="${list[0]["hosp_name"]}" required>