我正在使用 struts2 迭代器标签来列出用户创建的投诉。用户应该能够选择将用户发送到包含有关投诉的更多详细信息的页面的链接。虽然转到下一页有效,但我不知道如何将投诉 ID 带到新页面。
//.jsp Code
<table>
<tr>
<td><strong>Complaint #</strong></td>
<td><strong>Current Status</strong></td>
</tr>
<tr>
<td><a href="<s:url namespace="/staff" action="complaintDetails"/>"><s:property value="cmplntNumber"/></a></td>
<td>currentStatus</td>
//struts.xml
<action name="complaintDetails" class="complaintInformation" method="complaintDetails">
<result name="complaintDetails">/complaintDetails.jsp</result>
</action>
现在我可以成功访问到complaintDetails.jsp,我只需要获取用户选择的具体投诉Id。