struts分页时如何保留复选框状态

发布于 2024-12-26 02:48:49 字数 229 浏览 0 评论 0原文

我正在struts 1.3中开发Web应用程序我正在使用显示标签来显示数据我在表显示中有复选框。我是显示标签的新成员,分页我想在页面之间维护复选框的状态。发生的情况是,当我选中一个复选框,然后转到第二页,然后选中那里的一个复选框,当我返回到上一页时,该复选框再次未被选中。表示复选框的状态未保持。如果保持,则应显示已选中。当我转到下一页或上一页时,每次

我不明白如何处理这个问题时,都会调用我的动作类。任何形式的帮助将不胜感激。

i am developing web application in struts 1.3 i am using display tag to display data i have checkbox in table display.i am new in dispaly tag, pagination all I want to maintain the state of checkboxes across pages. What happens is when i check one checkbox and then go to say 2nd page then check one checkbox there and when i return to previous page the checked box is again unchecked. Means the status of the checkbox is not maintained.If it is maintained then it should show checked. when i goto next or previous page my action class is called everytime

i am not understanding how handle this . Any kind of help would be greatly appreciated.

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

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

发布评论

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

评论(1

撩动你心 2025-01-02 02:48:49

一般来说,如果struts框架不提供该功能,解决这个问题有几种方法。

  1. 将检查的值传递给page2,并在从page2切换到page1时传回。

  2. 将检查的值保存在 cookie 中,并在 page1 中添加代码以重新加载 cookie 中的检查值。

  3. 将检查的状态保存在服务器会话中。

希望对您有所帮助。

Generally, solving this problem has several ways if struts framework does not provide the feature.

  1. pass the checked value to page2 and pass back when switch from page2 to page1.

  2. save the checked value in cookie and add code in page1 to reload the checked value in cookie.

  3. save the checked status in server session.

Hope it would be helpful to you.

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