我使用的是MongoDB,我的对象是这样的
{
"id" : "1",
"Name" : "jack",
"Date" : "22-03-2018",
"Time" : "123412",
"tmax_volumes" : {
"type1" : "392.7cm",
"type2" : "83.1cm",
"type3" : "24.1cm",
"type4" : "15.6cm"
}
}
现在想在我的tmax_volumes
页面中打印jstl
。
在我使用${COLL.tmax_volumes}
这个变量的jstl页面中我得到了tmax_volumes
个对象,如下所示
{
"type1" : "392.7cm" ,
"type2" : "83.1cm" ,
"type3" : "24.1cm" ,
"type4" : "15.6cm"
}
现在我需要使用Key values
,
392.7cm
83.1cm
24.1cm
15.6cm
由于
答案 0 :(得分:0)
在我的模型中,我映射tmax_volume
对象
private Map<String,String> tmax_volumes;
我的jstl页面,我已经分配如下
<p>${COLL.tmax_volumes.type1}</p>
<p>${COLL.tmax_volumes.type2}</p>
<p>${COLL.tmax_volumes.type3}</p>
<p>${COLL.tmax_volumes.type4}</p>