要獲取每行的id字段的值,你可以使用displaytag的EL表達式來獲取。下面是一種可能的實現方法:
<display:table>
標簽來展示數據列表,并設置uid
屬性為當前行的索引值(從0開始)。<display:table name="yourList" uid="rowIndex">
<display:column property="id" title="ID" />
<!-- 其他列 -->
</display:table>
${rowIndex}
來獲取當前行的索引值。<%-- 在JSP頁面中使用 --%>
<%-- 獲取當前行的id字段值 --%>
${yourList[rowIndex].id}
// 在后臺Java代碼中使用
yourList.get(rowIndex).getId();
通過上述方式,你可以獲取到每行的id字段的值。請根據你的具體實現進行相應的調整。