我有这个
<c:forEach items="${countryList}" var="var1" varStatus="counter">
<input type="checkbox" name="passports[${counter.index}].country_issue" value="${var1.country_name}" >${var1.country_name}</input>
</c:forEach>
现在我想将其转换为类似
的内容<form:checkboxes path="passports[${counter.index}].country_issue"
这里的问题是我如何在这里使用varStatus作为计数器
答案 0 :(得分:0)
你不需要它我猜,这不起作用吗?:
<form:checkboxes path="passports.country" items="${countryList}" />
我不完全明白你想要实现的目标;你是使用一个列表(国家)的索引作为另一个列表(护照)的索引吗?
如果出于某种原因你确实需要varStatus,那么你需要使用form / checkbox。
的问候,
斯泰恩