0
如何從JSP頁面中的請求範圍循環訪問'somethings'變量?循環c:使用JSTL設置變量
<c:set var="somethings" value="${fn:split('a,b,c', ',')}" scope="request"/>
<c:forEach items="somethings" var="some">
${some} // <= Expected show a b c, but why display 'somethings'?
</c:forEach>
謝謝。