除了 JSP 中的 GET 和 POST 之外,还有其他方法可以将值从一个页面传递到另一个页面吗?
例如,我有一个包含表单的 form.jsp 页面和对接收到的数据进行所有处理的 process.jsp。当我从页面 form.jsp 提交数据时,它会转到 process.jsp,它执行所有处理并创建一个表。我想将此表发送到 form.jsp。有什么办法可以做到这一点吗?
For instance I have a page form.jsp contaiing a form and process.jsp that does all processing on the received data. When I submit data from page form.jsp,it goes to process.jsp which does all the processing and creates a table. I want to send this table to form.jsp.Is there any way to do thi?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用response.sendredirect(“form.jsp”)。您可以在会话中添加表并在 form.jsp 中访问它。也可以在response.sendredirect中使用像
"form.jsp?table"+tableData
这样的url。Use
response.sendredirect("form.jsp")
. You can add your table in session and access it in form.jsp. Also can use url like"form.jsp?table"+tableData
in response.sendredirect.不要在 JSP 中进行后处理。 使用 servlet。
Don't do the postprocessing in a JSP. Use a servlet.
您可以使用 对 URL 重定向进行编码以对您的 URL 进行编码。
You would use Encode URL Redirect for encoding your URL.