admin管理员组文章数量:1346328
I have a code that looks like this:
In AnalyzeUserClient.jsp:
<c:set var="arrayList"><%= (ArrayList<String>)request.getSession().getAttribute("arrayList") %></c:set>
var sessionId = [];
<c:forEach items=${arrayList} var="id">
sessionId.push("${id}"); // add them one at a time, assuming string values
</c:forEach>
However,this line:
sessionId.push("${id}");
does not seem to be passing the values into the array "sessionId" (I viewed the source code on browser).So the question is,what can I do to pass the values into the array?
EDIT:I just realised that there are some problems as JSTL is server-side and JavaScript is client-side.So is there a workaround on it?
I have a code that looks like this:
In AnalyzeUserClient.jsp:
<c:set var="arrayList"><%= (ArrayList<String>)request.getSession().getAttribute("arrayList") %></c:set>
var sessionId = [];
<c:forEach items=${arrayList} var="id">
sessionId.push("${id}"); // add them one at a time, assuming string values
</c:forEach>
However,this line:
sessionId.push("${id}");
does not seem to be passing the values into the array "sessionId" (I viewed the source code on browser).So the question is,what can I do to pass the values into the array?
EDIT:I just realised that there are some problems as JSTL is server-side and JavaScript is client-side.So is there a workaround on it?
-
Regarding your edit about server-side working together with client-side, if the intention is to produce JS that populates the
sessionId
array and then use it only on the client-side then that doesn't matter. (It only bees a problem if your server-side code tries to use the array too.) You should be able to use server-side code to output JS that populates an array - though I'd consider structuring it in a way that puts the values directly in the array literal[]
rather than using.push()
. – nnnnnn Commented Nov 2, 2012 at 6:36 - I tried doing: "sessionId["${id}"];" as well,but it is still not working.Is there another way to resolve this? – Marcus Dryice Koh Commented Nov 2, 2012 at 6:41
1 Answer
Reset to default 8Don't mix EL and scriptlets. In fact, forget about scriptlets pletely:
var sessionId = [];
<c:forEach items="${sessionScope.arrayList}" var="id">
sessionId.push("${id}");
</c:forEach>
Note though that this will generate invalid JavaScript if one of the IDs happens to contain a double quote. So you'd better JavaScript-escape the IDs before, in your controller. And I would suggest a pletely different approach: serialize the list of IDs to a JSON string in your controller, and store this JSON string in request attribute. The JSP page will just need
var sessionId = ${jsonEncodedSessionIds};
which will translate to the following generated code:
var sessionId = ["id1", "id2"];
本文标签: jspSet array values in javascript from JSTL codeStack Overflow
版权声明:本文标题:jsp - Set array values in javascript from JSTL code - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743829549a2546270.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论