跨页面的 JSP 变量

发布于 2024-10-21 18:37:20 字数 109 浏览 1 评论 0原文

我有一个 jsp 页面,其中包含十个变量,当用户单击按钮时,我必须将其转发到另一个页面。实现此目的的一种方法是将它们附加到 url 并发送它,但我不确定变量的数量是否会增加。无论如何我可以转移这些变量吗?

I have a jsp page which contains ten variables which I have to forward it to another page when user clicks a button. One way to achieve this is to append those to the url and send it, but I am not sure whether the number of variables may increase. Is there anyway that I can transfer these variables?

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

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

发布评论

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

评论(1

记忆里有你的影子 2024-10-28 18:37:20

如果这些值来自表单输入元素,请将它们放入表单中并使用正确的提交按钮。

如果这些只是应用程序逻辑的变量,请将它们放入会话或跨请求持续存在的其他上下文中。

If these values come from form input elements, put them in a form and use a proper submit button.

If these are simply variables for application logic, put them into the session or some other context that persists across requests.

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