在 Struts2 中迭代数组列表

发布于 2024-10-18 16:11:01 字数 115 浏览 1 评论 0原文

我有一个列表,列表中的条目是另一个列表。我已经准备好了这个列表,我想做的就是通过 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

独﹏钓一江月 2024-10-25 16:11:01

请参阅: http://struts.apache.org/2.0.11/docs/iterator .html

以下应该有效,但未经测试:

<s:iterator value="parentList">
    <s:iterator>
        <s:property/>
    <s:iterator>
</s:iterator>

我认为内部迭代器应该使用外部迭代器推送到堆栈上的当前值。 S2 属性标签的作用相同。

如果您有更复杂的嵌套,则可以将 var 属性添加到父迭代器中并为其赋值。然后,该值将成为迭代器内推送值的名称。

一个例子:

<s:iterator value="parentList" var="referencedAs">
    <s:iterator value="referencedAs">
        <s:property/>
    <s:iterator>
</s:iterator>

See: http://struts.apache.org/2.0.11/docs/iterator.html

Following should work, not tested:

<s:iterator value="parentList">
    <s:iterator>
        <s:property/>
    <s:iterator>
</s:iterator>

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:

<s:iterator value="parentList" var="referencedAs">
    <s:iterator value="referencedAs">
        <s:property/>
    <s:iterator>
</s:iterator>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文