如何在jsp中访问struts2属性值?

时间:2014-04-17 09:57:04

标签: java jsp java-ee struts2

<s:iterator value="MyList" status="idx">
     <% int index = %><s:property value = '%{#idx.index}'/><% ; %>
</s:iterator>

上述代码不起作用。 如何将'idx'的整数值存储在变量'index'中?

2 个答案:

答案 0 :(得分:1)

而不是使用java变量创建struts变量可以正常工作。

<s:set name="newVariable" value="%{#idx.index}" />

每当您需要访问新创建的struts变量时。你可以用这个

<s:property value="#newVariable" />

答案 1 :(得分:0)

您可以使用

访问jsp中的列表值
<s:property value="dataname"/>

dataname是您的pojo生成的数据库列