0

我在 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"/>

如何使用它?

4

1 回答 1

0

它应该是这样的:

<s:property value="%{#userList[5].name}"/>
于 2011-03-25T09:20:21.473 回答