在 Struts2 中迭代数组列表
我有一个列表,列表中的条目是另一个列表。我已经准备好了这个列表,我想做的就是通过 jsp 显示它。
如何迭代一个列表并返回另一个列表。
任何帮助表示赞赏。
问候, 森尼
I have a list and reach entry in the list is an other list. I have this list ready with me, all i want to do is to display it through jsp.
How do I iterate a list which return one more list.
Any help is appreciated.
Regards,
Senny
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅: http://struts.apache.org/2.0.11/docs/iterator .html
以下应该有效,但未经测试:
我认为内部迭代器应该使用外部迭代器推送到堆栈上的当前值。 S2 属性标签的作用相同。
如果您有更复杂的嵌套,则可以将 var 属性添加到父迭代器中并为其赋值。然后,该值将成为迭代器内推送值的名称。
一个例子:
See: http://struts.apache.org/2.0.11/docs/iterator.html
Following should work, not tested:
The inner iterator I think should use the current value pushed onto the stack by the outer iterator. The S2 property tag does the same.
If you have more complicated nesting, you add the var property to the parent iterator with a value. This value then becomes the name of the pushed value inside the iterator.
An example of this: