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.
我正在使用 struts2+tiles 框架。我有leftmenu.jsp,我想在其中显示数据库中的项目以及站点启动时的位置。
谢谢
斯瓦纳
我认为你可以通过在你的操作类中使用一个列表“itemlist”来做到这一点,它以列表的形式从数据库中获取你想要在你的项目中显示的内容,然后你可以在你的jsp中使用相同的项目列表来迭代使用
<struts:iterator value="itemlist"> <struts:property value="listField"> </struts:iterator>
并获取jsp中的值。