从 Action 子类获取数据到 Jsp View 的最佳方法?

发布于 2024-10-19 10:58:33 字数 163 浏览 3 评论 0原文

我试图通过将每个项目的数据存储在 HashMap 中,然后将所有 HashMap 存储在 ArrayList 中,然后将其传递给视图的请求对象来传递一些数据的列表。

谁能告诉我更好的方法吗!

我想补充的一件事是,有时我想放在第一位的数据为空,因此 ArrayList 大小变为零。

I am trying to pass a list of some data by storing each item's data in a HashMap and then storing all the HashMaps in a ArrayList and then passing it to the request object to the View.

Can anybody tell me a better way to do so!

One more thing I would like to add is that sometimes the data I want to put first is null and so the ArrayList size becomes zero.

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

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

发布评论

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

评论(2

┊风居住的梦幻卍 2024-10-26 10:58:33

在 ActionClass 中有以下代码如下
request.setAttribute("ItemsList",ItemsList);//在请求范围中设置它

并使用下面的代码片段在相应的jsp页面中获取它
request.getAttribute("ItemsList"); //通过请求范围获取它

请告诉我它是否有效。

可能的替代解决方案是使用 struts 标签迭代列表。

Have the below code in ActionClass as below
request.setAttribute("ItemsList",ItemsList);//set it in request scope

and fetch it in the coressponding jsp page by using the below snippet
request.getAttribute("ItemsList"); //get it via request scope

Please let me know if its working.

Possible alternate solution is to iterate the list using the <logic:iterate> struts tag.

还有另一种方法:

正如您所说,您将所有哈希图数据放入列表中,首先做一件事。将该列表作为字段放入 ActionForm 中。之后从操作类设置该列表。例如,如果您有员工,您将拥有像 setEmployees() 这样的方法。
因此,您可以将列表设置为 empForm.setEmployees(employeeList);而这一切都将在你的动作课中。

接下来,在表单 jsp 页面中,您可以检索 ${empForm.employees} 的值

There is another approach also :

As you said you are putting all the hashmap data into the list, first do one thing. Put that list as a field into the ActionForm. After that set that list from the action class. for example if you have the employees you will have the method like setEmployees().
So you can set the list as empForm.setEmployees(employeeList); and all this will be in your action class.

Next, form jsp page you can retrieve the values as ${empForm.employees}

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