Struts2设置列表变量

时间:2011-03-25 08:51:49

标签: struts2 set ognl

我在Struts2上有一个列表,我想为它定义一个变量。我做到了:

<s:set name="userList" value="retrieveUserList(@com.company.project.commons.beans.Profile@YOURSELF.typeId)"/> 

我想获取它的元素,例如:

<s:property value="retrieveUserList(@com.company.project.commons.beans.Profile@YOURSELF.typeId)[5].name"/> 

正在工作,但在我设置之后,我想使用该变量,这不起作用:

<s:property value="#userList[5].name"/>

如何使用它?

1 个答案:

答案 0 :(得分:0)

应该是这样的:

<s:property value="%{#userList[5].name}"/>