我正在使用spring-mvc,bootstrap,我想设置两个属性并同时在我的JSP页面中的文本字段中访问它们,sp一个属性给我名称,另一个属性给值,所以在jsp页面中我想使用forloop如下:

for(i=0,j=0; i<=len,j<=len; i++,j++)


我已经尝试使用此:

c:forEach items="${buttonNames,num}" var="buttonName,num"  varStatus="counter">


但这会导致错误。

最佳答案

<c:forEach items="${buttonNames}" var="buttonName" varStatus="counter">
    ${num[counter.index]}
</c:forEach>


虽然最好有一个带有buttonName和num的列表模型。

07-24 09:27