如何将 ${status.index} 放入另一个 EL 中?像这样"${errors.hasFieldErrors('list[ ${status.index} ].count') }"


<c:forEach items="${list.productList}" var="dto" varStatus="status">
<tr>
<td></td>
<td></td>
<td></td>
</tr>
.......
.......
</c:forEach>
<spring:hasBindErrors name="productDto">
<c:if test="${errors.hasFieldErrors('productList[ *INDEX* ].count') }">
ERROR MESSAGE
</c:if>
</spring:hasBindErrors>

如果存在错误,我想打印错误消息。然而,双引号、单引号和EL标签已经存在。所以,将指数不会工作得很好。
我试了
$ {status.index} ] .count")}"祝辞,
& lt; c:如果测试="${错误。hasFieldErrors (productList [[status.index]] .count")}"比;
,但仍然不工作。请看这个。谢谢你。

用引号代替开、闭引号

`${.......} some other stuff`;

相关内容

  • 没有找到相关文章

最新更新