歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Struts2中s:iterator的遍歷

struts2的s:iterator 可以遍歷 數據棧裡面的任何數組,集合等等 以下幾個簡單的demo:
s:iterator 標簽有3個屬性:
    value:被迭代的集合
    id   :指定集合裡面的元素的id
    status 迭代元素的索引

示例:

  1. <s:iterator value="%{pageData.datals}" id='vo' status='st'>  
  2.     <tr <s:if test="#st.even">class="spritTr"</s:if>>  
  3.          <!--:#status.count 當前行數-->  
  4.         <td align="center"><s:property value="#st.count+(pageData.currentPage-1) * (pageData.pageSize)" /></td>  
  5.     <td>${vo.qcOrderNo}</td>  
  6.     <td>${vo.qcPersonName}</td>  
  7.     <td>${vo.buyerName}</td>  
  8.     <td><fmt:formatDate value="${vo.qcDate}"/></td>  
  9.     <td>${vo.vendorName}</td>  
  10. </s:iterator>   
Copyright © Linux教程網 All Rights Reserved