Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
159 views
Welcome To Ask or Share your Answers For Others

1 Answer

<c:set var="res" value="getResults" />

This sets the res variable to the string "getResults". If you want it to be a reference to the same object as the getResults attribute, you want

<c:set var="res" value="${getResults}" />

This is completely unnecessary though, since you can iterate directly on ${getResults}


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...