如何隐藏forEach循环中的第一个输入?
How to make first input in a forEach loop hidden?
我有一个这样的 foreach 循环:
<c:forEach var="valuesInRows" items="${sprav.valuesInRows}" varStatus="statusInRows">
<c:forEach var="valuesInRow" items="${valuesInRows}" varStatus="statusInRow">
<c:out value="${sprav.columnName[statusInRow.index]} : " />
<f:input path="valuesInRows[${statusInRows.index}][${statusInRow.index}]" />
</c:forEach>
</c:forEach>
现在我想隐藏第一个 c:out 和 f:input。我如何实现它?提前致谢!
添加 varStatus="counter"
属性并检查 counter==0 以在第一次迭代时做一些不同的事情。
我有一个这样的 foreach 循环:
<c:forEach var="valuesInRows" items="${sprav.valuesInRows}" varStatus="statusInRows">
<c:forEach var="valuesInRow" items="${valuesInRows}" varStatus="statusInRow">
<c:out value="${sprav.columnName[statusInRow.index]} : " />
<f:input path="valuesInRows[${statusInRows.index}][${statusInRow.index}]" />
</c:forEach>
</c:forEach>
现在我想隐藏第一个 c:out 和 f:input。我如何实现它?提前致谢!
添加 varStatus="counter"
属性并检查 counter==0 以在第一次迭代时做一些不同的事情。