gpt4 book ai didi

java - 复选框绑定(bind)

转载 作者:行者123 更新时间:2023-11-30 05:11:20 29 4
gpt4 key购买 nike

我收到错误消息

org.springframework.beans.NotReadablePropertyException: Invalid property 'produts[0]' of bean class [java.util.HashMap]: Bean property 'produts[0]' is not readable or has an invalid getter method: Does the return type of the getter match the parameter type of the setter?

当我在jsp文件中执行以下操作时

<c:forEach items="${model.products}" var="prod"> varStatus="loop">
<tr>
<td align="center">
<form:checkbox path="produts[${loop.index}].selected"></form:checkbox>
</td>
<td><c:out value="${prod.description}"/> </td>
<td>$<c:out value="${prod.price}"/></td>
</tr>
</c:forEach>

产品由 List<Product> getProducts(); 填充在另一个类(class)。

我做错了什么?

最佳答案

对我来说看起来像是一个错字:

produts[${loop.index}]

应该是

products[${loop.index}]

关于java - 复选框绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3258592/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com