尝试从 ArrayList 在 Struts2 中创建表
我正在尝试创建一个表来显示我从数据库中提取到 JSP 页面中的一些数据(Struts2 应用程序的所有部分),但我不知道我在这里做错了什么......
这就是部分在我创建表的 JSP 页面中:
<table>
<s:iterator value="table" id="row">
<tr>
<s:iterator value="row" id="cell">
<td><s:property /></td>
</s:iterator>
</tr>
</s:iterator>
</table>
我的操作类中有一个 ArrayList
命名表,并且我非常确定我已经用正确的值填充了它。我确信这是一些简单的语法错误,但我仍然是 Struts2 的初学者。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
可能需要添加 # 字符:
进行测试以查看您的表值是否返回任何内容:
might need # character added:
do a test to see if your table value is returning anything:
我拿了你的 JSP 代码,并使用你的 JSP 在这样的操作中编写了一个 getter,它工作得很好。你的JSP代码没问题。您的 getter 方法或“表”的数量似乎有问题。如果您发布该内容,也许我们可以找出问题所在。
I took your JSP code, and wrote a getter in an action like this, using your JSP, it worked fine. Your JSP code is fine. There appears to be something wrong with your getter method or the population of the 'table'. If you post that, maybe we can figure out what's wrong with it.