Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
161 views
in Technique[技术] by (71.8m points)

el - Jstl for each loop items attribute use another variable not working

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

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

1 Reply

0 votes
by (71.8m points)
<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}


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...