我在 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"/>
如何使用它?