1个回答
展开全部
用户类型传参,然后写if语句判断参数的值,根据值,选择跳转的页面。例如:
void doPost() {
String userType = request.getParameter("type");
if ("1".equals(userType)) { //common user
response.sendRedirect("index.jsp");
} else if ("2".equals(userType)) { //admin
response.sendRedirect("index2.jsp");
} else {
//return error.
}
}
可以把上面的重定向换成内跳转
void doPost() {
String userType = request.getParameter("type");
if ("1".equals(userType)) { //common user
response.sendRedirect("index.jsp");
} else if ("2".equals(userType)) { //admin
response.sendRedirect("index2.jsp");
} else {
//return error.
}
}
可以把上面的重定向换成内跳转
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询