跨页面的 JSP 变量
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果这些值来自表单输入元素,请将它们放入表单中并使用正确的提交按钮。
如果这些只是应用程序逻辑的变量,请将它们放入会话或跨请求持续存在的其他上下文中。
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.