我的action类有一个像这样的对象数组:
Object[] varCount = (Object[]) countList.get(0);
字符串
我的调试程序显示了varCount的值。我把这个对象数组放在模型中,如下所示:
model.put("varCount ", varCount );
型
在JSP中,我迭代如下:
<c:forEach var="varCount " items="${model.varCount }" varStatus="loop">
<tr>
<td align="center"> <c:out value="${varCount[0]}"/></td>
</tr>
</c:forEach>
型
我得到以下错误:
Wrapped exception:
javax.servlet.jsp.JspException: An error occurred while evaluating custom action attribute "value" with value "${varCount [0]}": Unable to find a value for "0" in object of class "java.math.BigDecimal" using operator "[]" (null)
at org.apache.taglibs.standard.tag.common.core.ImportSupport.acquireString(ImportSupport.java:306)
at org.apache.taglibs.standard.tag.common.core.ImportSupport.doEndTag(ImportSupport.java:16
型
如何获取值?
2条答案
按热度按时间nbnkbykc1#
像这样使用来获取所有数组对象
字符串
91zkwejq2#
model.varCount
是一个数组或对象,包含BigDecimal示例。forEach循环遍历此数组的所有元素。在每次迭代中,当前元素存储在
varCount
page属性中。当前元素是BigDecimal
的示例。varCount[0]
没有任何意义。