我HashMap
在控制器中有一个:
HashMap<String, ArrayList<String> map = new HashMap<String, ArrayList<String>();
在 JSP 页面中,我想通过以下方式访问它:
<c:forEach var="list" items="${requestScope.list}">
<c:set var="testing" value="{requestScope.map}"></c:set>
<c:forEach var="anotherTesting" items="${testing['${list.item}']}">
<option><c:out value="${anotherTesting}"/></option>
</c:forEach>
</c:forEach>
字符串在哪里list.item
,但它用于另一个进程,但我希望它用于访问HashMap
.
有没有办法连接 JSTL?要么做,map.key
要么map['key']
做。