Struts2 遍离List>例子

遍离的变量格式是List<Map<String,Object>> ,下面是用Struts标签进行偏离的例子。

<s:iterator value="groupUsers" status="state">
	<tr>
                <td align="center"><s:property value="#state.index"/></td>  		
                <td align="center"><s:property value="%{USER_ID}"/></td>
    		<td align="center"><s:property value="%{USER_NAME}"/></td>
    		<td align="center"><s:property value="%{CELLPHONE}"/></td>
    	</tr>
</s:iterator>

你可能感兴趣的:(struts2)