在jsp中显示迭代bean值

时间:2011-06-29 15:11:48

标签: java javascript jsp javabeans

<logic:iterate id="requirement" name="requirementList" indexId="reqNumber">
        <a href="#" onClick="editItem('<%=requirement.service.description%>')">Edit</a>
</logic:iterate>

如您所见,我的目的是使用从列表中提取的各种值填充编辑链接。 “requirements”bean对象显示正常,但我不知道如何在JSP中获取值,这在填充javascript方法调用时会更有用。

编辑:使用Struts 1.x

1 个答案:

答案 0 :(得分:0)

如果你想使用jsp来检索那个,那就像这样痛苦。

((Requirment)pageContext.getAttribute("requirement")).getService().getDesciption();

如果您像其他建议一样使用EL

${requirement.service.description}