1. 程式人生 > >Java後臺返回list到jsp頁面遍歷

Java後臺返回list到jsp頁面遍歷

Java後臺:
public String findDuchaDoneList(){
		    	try{
		    		ybm=iDuchaManagerService.findDuchaDoneList(this.id);
			 		resultInfo=iDuchaManagerService.findDcCaseInfobyPid(id);
			 		dcCaseInfoList=(List<DcCaseInfo>)resultInfo.getRows();		 		 
			 	 	}catch (Exception e) {
			 	 		e.printStackTrace();
			 	 	}
			 	 	return SUCCESS;
		    }

JSP頁面接收:

<s:iterator value="dcCaseInfoList" status="stat" id="sd">		
			<tr> 
			
				<td>子流程<s:property value="#stat.index+1"/></td>
				
				<td> 
				
				<a href='javascript:void(0)' onclick="caseDetail(<s:property value="id"></s:property>);">於<s:date name="createdate" format="yyyy年MM月dd日 HH時mm分"/>發起,編號:<s:property value="casebookname"></s:property><s:property value="casebooknum"></s:property> </a> </br></td>
			   
			</tr> 
            </s:iterator>

使用S標籤的iterator 來進行list遍歷解釋,其中value對應後臺返回的list名稱,status屬性可以用於新增編號,使用方法為
<s:property value="#stat.index+1"/>,注意:後臺返回到前臺的資料必須要有get、set方法,不要漏了。