jsp页面参数稳定
我使用 jsp 构建了一个 Web 应用程序。我在 get 方法中将参数从 servlet 发送到 jsp,以便在请求时将它们显示在 jsp 页面中。问题是:当我将表单提交到 servlet 然后返回到 jsp 时,我必须随请求发送这些参数。 我怎样才能使参数稳定,所以我必须将它们发送一次(仅在 get 方法中)并在 jsp 中维护它们。
I build a web application using jsp. I send parameters from servlet to jsp in get method to display them in jsp page when I request it. the problem is : when I submit the form to servlet and then return to jsp I have to send these parameter with the request.
How can I make a stable parameters so, I have to send them once (in get method only) and maintain them in jsp.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过${param}访问请求参数。
...
...
...
这基本上打印 request.getParameter("foo") 作为输入值。这样提交的值将保留在输入元素中。
同样的问题在这里
如何将表单提交到 Servlet 后,我在 JSP 中保留 HTML 表单字段值吗?
You could access request parameters by ${param}.
...
...
...
This basically prints request.getParameter("foo") as input value. This way the submitted value will be retained in the input elements.
same question here
How can I retain HTML form field values in JSP after submitting form to Servlet?