JSP JSTL从对象数组获取值

oogrdqng  于 2023-08-01  发布在  其他
关注(0)|答案(2)|浏览(177)

我的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">&nbsp;<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


如何获取值?

nbnkbykc

nbnkbykc1#

像这样使用来获取所有数组对象

<c:forEach var="item" items="${model.varCount }" varStatus="loop">
 <tr>
 <td align="center">&nbsp;<c:out value="${item}"/></td>
  </tr>
 </c:forEach>

字符串

91zkwejq

91zkwejq2#

model.varCount是一个数组或对象,包含BigDecimal示例。
forEach循环遍历此数组的所有元素。在每次迭代中,当前元素存储在varCount page属性中。当前元素是BigDecimal的示例。varCount[0]没有任何意义。

相关问题