我有一個控制器中的HashMap
:串聯JSTL
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']
都可以。