<logic:iterate id="id" name="form" property="arrayList" scope="request">
    ......
</logic:iterate>没什么难度

解决方案 »

  1.   

    例:
    <logic:iterate id="result" name="LeaderQueryForm" property="arrResult">
        <tr> 
            <td class=t1 align=center height=25><bean:write name="result" property="szLineNo"/></td><!--序号-->
            <td class=t1 align=center><custom:sn name="result" property="OP_ID"/></td><!--督办件号--><%--<bean:write name="result" property="ESTABLISH_YEAR"/><bean:write name="result" property="SN" />--%>
            <td class=t1 align=center><custom:checkLength formname="LeaderQueryForm" name="result" property="szNode" styleClass="t1" size="90"/></td><!--所属目录-->
            <td class=t1 align=center><a href=# onclick="javasript:titleClick(<bean:write name="result" property="OP_ID"/>);"><custom:checkLength formname="LeaderQueryForm" name="result" property="PRJ_NAME" styleClass="t1" size="90"/></a></td><!--项目名称-->
            <td class=t1 align=center><bean:write name="result" property="ESTABLISH_DATE"/></td><!--立项日期-->
            <td class=t1 align=center><custom:checkLength formname="LeaderQueryForm" name="result" property="szUndertake" styleClass="t1" size="60"/></td><!--承办单位-->
            <td class=t1 align=center><bean:write name="result" property="STATUS"/></td><!--办理状态-->
            <td class=t1 align=center><bean:write name="result" property="szFile" filter="false"/></td><!--相关材料-->
        </tr>
    </logic:iterate>
      

  2.   

    <logic:iterate id="id" name="form" property="arrayList" indexed="index"
        ......
    </logic:iterate>arrayList就是在你formbean中存在的一个ArrayList对象!