当前位置: 技术问答>java相关
response.sendRedirect("index.jsp") 和 <jsp:forward page="index.jsp"/>的区别?
来源: 互联网 发布时间:2015-08-28
本文导语: 如题 | 你仔细地看看地址栏的变化就知道了的 | 一样的 B B:response.sendRedirect("index.jsp") 能在index.jsp 中得到A页传过来的参数,而用则不能. 至于地址栏: 用response.sendRedirect("inde...
如题
|
你仔细地看看地址栏的变化就知道了的
|
一样的
B
B:response.sendRedirect("index.jsp") 能在index.jsp 中得到A页传过来的参数,而用则不能.
至于地址栏:
用response.sendRedirect("index.jsp") 是显示:..../index.jsp
而用 是显示:.../B
以上两点不知道是否写反了,请各位指教
B
B:response.sendRedirect("index.jsp") 能在index.jsp 中得到A页传过来的参数,而用则不能.
至于地址栏:
用response.sendRedirect("index.jsp") 是显示:..../index.jsp
而用 是显示:.../B
以上两点不知道是否写反了,请各位指教
|
应该先被解释.
|
不一样,sendrXXX是真正的转移到另一个页面,url变化。而forward,只是在原来的页面中执行你forward指定的网页,url不变。