redirect|response
<黑咖啡 原创>
以下是一个购物单提交的jsp页面(正确的)
<%@ page contentType="text/html" language="java" import="java.util.*,com.blackCoffee.shop.*,com.blackCoffee.util.*,com.blackCoffee.db.*" %>
<%@ page errorPage="/error.jsp" %>
<%
if(AssociatorSession.getSession(session)==null)
response.sendRedirect("/login.jsp"); //如果会员没有登录就跳转到登录页面,
else{ //如果已经登录则提交订单并销毁session中的购物车
Associator associator = new Associator();
associator = AssociatorSession.getSession(session);
String errmsg = "";
errmsg=OrderFormOperation.addOrderForm(request,session);
CartSession.removeSession(session); //销毁session中的购物车
if(!errmsg.equals(""))
response.sendRedirect("/error.jsp?errmsg="+errmsg);
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body>
<Script language=JavaScript>
alert(" 以上商品已订购,我们会和你及时联系!");
window.location="../index.jsp";
</Script>
</body>
</html>
<%}%>
有问题的代码是这样的
<%@ page contentType="text/html" language="java" import="java.util.*,com.blackCoffee.shop.*,com.blackCoffee.util.*,com.blackCoffee.db.*" %>
<%@ page errorPage="/error.jsp" %>
<%
if(AssociatorSession.getSession(session)==null)
response.sendRedirect("/login.jsp"); //如果会员没有登录就跳转到登录页面,
//没有else了
Associator associator = new Associator();
associator = AssociatorSession.getSession(session);
String errmsg = "";
errmsg=OrderFormOperation.addOrderForm(request,session);
CartSession.removeSession(session); //销毁session中的购物车
if(!errmsg.equals(""))
response.sendRedirect("/error.jsp?errmsg="+errmsg);
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body>
<Script language=JavaScript>
alert(" 以上商品已订购,我们会和你及时联系!");
window.location="../index.jsp";
</Script>
</body>
</html>
<%//}%>
请注意到出现问题的是因为没有了else,问题如下:每当不登录就购买物品后,点“订货”提交按钮,本来应该转到登录页面,登录后查看购物车,以前购买的货物应该都在,但是点“订货”提交按钮后,转向登录页面,登录后购物车里没有了。当时出现错误好像是说response.sendRedirect已经发送到客户端,不能改变了,我就在这里折腾了些时间,后来检查代码时发现了这句话CartSession.removeSession(session);
原来if(AssociatorSession.getSession(session)==null)
response.sendRedirect("/login.jsp"); //如果会员没有登录就跳转到登录页面,
这句话后面没有else, 所以页面虽然跳转了,但是后面的语句也继续执行了,CartSession.removeSession(session);
这句清空了购物车,所以才会出错。
总结:response.sendRedirect跳转后,原页面的语句会继续执行。