如何使用显示标签在struts中处理行......?

发布于 2024-12-02 11:06:50 字数 462 浏览 4 评论 0原文

在 jsp 中,我使用显示标记来打印表格。

我想在一行中显示多个属性。

假设我想显示有关该行特定内容的一些信息。

ex

row1
title:-How to display an image in html ?
started by:-mohit on:-21.10.11

row2
title:-How to display an image in html ?
started by:-mohit on:-21.10.11

row3
title:-How to display an image in html ?
started by:-mohit on:-21.10.11

row4
title:-How to display an image in html ?
started by:-mohit on:-21.10.11

请帮助我,我必须在 4 到 5 天后提交我的项目。

In jsp I'm using Display tag to print a table.

I want to display multiple properties in a single row.

Suppose I want to show some information about the particular content of that row.

ex

row1
title:-How to display an image in html ?
started by:-mohit on:-21.10.11

row2
title:-How to display an image in html ?
started by:-mohit on:-21.10.11

row3
title:-How to display an image in html ?
started by:-mohit on:-21.10.11

row4
title:-How to display an image in html ?
started by:-mohit on:-21.10.11

Please help me guy's I have to submit my project after 4 to 5 days.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

醉殇 2024-12-09 11:06:50

建议在Action类中设置值(显示在displayTag中)。
如果您可以创建一个 bean 类(将 title、startedBy 等作为属性),那就更好了。

然后从数据库中检索数据,并为每一行创建一个 bean 类的对象(通过设置属性中的值)并将该对象存储在 ArrayList 中。完成数据检索后,将此 ArrayList 设置为请求或会话范围中的属性。

假设您在会话范围内设置了名为“tableData”的属性。
然后,在 Jsp 中,您可以提供


<显示:列>

我希望这能帮助您理解这个场景。

It is recommended to set the values (to be displayed in displayTag) in the Action class.
It would be even better if you can create a bean class (holding title, startedBy etc. as a properties).

Then retrieve the data from the database and for each row creates an object of your bean class (by setting the values in the properties) and store this object in an ArrayList. When you finished retrieving the data, set this ArrayList as an attribute in either request or session scope.

Suppose you have set the attribute with the name "tableData" in session scope.
Then, in your Jsp you can provide

<display:table id="data" name="sessionScope.tableData">
<display:column> <bean:write name="data" property="title" /> </display:column>
</display:table>

I hope this will help you to understand the scenario.

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