getResults is list
case 1 :
<c:forEach items="${getResults} var="s1">
${s1}
</c:forEach>
case 2 :
<c:set var="res" value="getResults" />
<c:forEach items="${res} var="s2">
${s2}
</c:forEach>
In above code case (1) is printing list of results fine
but in case (2) just res is printing
Iam trying to print results using case 2 please help me out
that is need for my project
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…