Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将属性放在重定向响应上,例如将属性放在转发请求上?一开始我以为可以设置成respone.setAttribute(..),但是这个方法不存在。请问有什么帮助吗?
提前致谢 !
重定向包括告诉浏览器:“请通过发送新的 GET 请求去那里(有一个 URL)”。因此,如果要将参数传递给将接收第二个请求的组件,则必须在 URL 中传递这些参数:
response.sendRedirect("/foo/bar/baz?param1=value1¶m2=value2");