<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
答案 0 :(得分:0)
如果你想使用jsp来检索那个,那就像这样痛苦。
((Requirment)pageContext.getAttribute("requirement")).getService().getDesciption();
如果您像其他建议一样使用EL
${requirement.service.description}