Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在此链接: http ://www.mkyong.com/struts/struts-logic-iterate-example/ 示例#2:他们展示了使用 struts 标签来遍历List listUsers. 但是该示例List直接将集合显示为请求中的属性。List如果是相应表单bean中的属性,是否可以使用此标签?使用链接上的语法,我得到(预期):
List
listUsers
listUsers在任何范围内都找不到 bean:“ ”
如果列表设置为您需要在迭代标记中具有以下语法的形式
<logic:iterate id="myid" name="<nameofform>" property="<listname>"> <bean:write name="myid" /> </logic:iterate>
表单名称是在 struts-config.xml 中定义的名称。