将jsp对象列表分配给javascript数组

时间:2012-07-18 12:02:32

标签: javascript arrays list jsp

我在JSP中有一个名为cumulatorList的List,它是Objects列表。类的Object有很少的String和Date变量作为其属性。

我必须将此列表从jsp传输到javascript。 我使用以下代码:

var cumList = new Array();
<%! 
int j = 0;
%>
for (int i = 0; i < <%=cumulatorList.size()%>;i++)
{
    <%
         session.setAttribute("cumListElement", cumulatorList.get(j++))
    %>
    cumList[i] = document.getElementById("cumListElement");
}

//Note: Here "cumListElement" is hidden element included in HTML.

但是在添加以下代码之后,我的jsp页面消失了,没有错误。如果我删除这部分,一切正常。

请告诉我如何处理这个问题。

1 个答案:

答案 0 :(得分:0)

你不能生成一个包含所有值的字符串吗? 我不是JSP专家,但你应该能够循环并产生每个值

var cumlist = [ 
<%
  // Loop over JSP cumulatorList and return each of the values
%>
];

// Result: var cumlist = [ 'x', 'y', 'z' ];