As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center作为指导。
6年前关闭。
如何通过
我正在尝试对其他应用程序执行
新资源
6年前关闭。
如何通过
sendRedirect
URL传递标题参数?我正在尝试对其他应用程序执行
sendRedirect
。但我想将标头参数与请求一起传递。这该怎么做? 最佳答案
HttpServletResponse.sendRedirect()
将重定向响应(302)发送到客户端。然后,客户端向Location
标头中指定的资源发起新请求。 HTTP并未定义服务器要求客户端向重定向资源设置任何请求标头的方式。
要将数据传递到新资源,可以在查询字符串中进行设置:
使其具体化
response.sendRedirect("NewResource?param1=value1");
新资源
request.getParameter("param1");
10-08 16:28