2012-09-06 42 views
1

我有頁面顯示僱員名單,他們的名字。我需要讓他們作爲超鏈接和點擊一個員工的名字,我需要調用另一個行動說「detailsAction」。此操作將從該數據庫獲取有關該員工的數據,並在頁面中顯示相同數據。我如何發送與用戶點擊到我的「detailsAction」超鏈接關聯的員工ID?struts2從數據超鏈接調用動作

眼下員工列表在我的jsp頁面下方做

<s:if test="empList"> 
<table> 
    <tr> 
    <th>Employee Name</th> 
    </tr> 
    <s:iterator value="empList"> 
    <tr> 
    <td><s:property value="empName" /></td> 
    </tr> 
    </s:iterator> 
</table> 
</s:if> 
+0

您添加的ID作爲參數,就像任何其他鏈接。 –

+0

@DaveNewton如果上述內容是正確的,並且通過了所示的id ...我如何在我的動作中訪問它? – rr87

回答

0

您可以使用Struts標籤爲:

<s:a href="/whateverAddress" > 
     <s:text name="Link text goes here"/> 
     <s:param name="param1" value="value1"/>  
    </s:a>