使用struts的logic:iterate标签遍历列表时得到显示序号

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用struts的logic:iterate标签遍历列表时得到显示序号相关的知识,希望对你有一定的参考价值。

<logic:notEmpty name="sList" scope="request">
    <logic:iterate id="element" indexId="index" name="sList">
        <tr>
            <td width="50"><%= index.intValue() + 1 %>.</td>
            <td><bean:write name="element"/></td>
        </tr>
    </logic:iterate>
</logic:notEmpty>

关键是indexId="index"<%= index.intValue() + 1 %> 两部分。

以上是关于使用struts的logic:iterate标签遍历列表时得到显示序号的主要内容,如果未能解决你的问题,请参考以下文章

Struts2的标签库——使用Struts2的标签库

struts标签的使用

struts标签

struts 标签库注解

struts2之标签库

Struts学习Struts标签库的运用