请问在怎么java中怎么用Servlet实现不同类型用户(管理员,普通用户)跳转到不同页面

就是根据表单提交时选择的单选框中的值来判断跳转,求代码啊
2024-11-30 08:25:00
推荐回答(4个)
回答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.
}

}

可以把上面的重定向换成内跳转

回答2:

校验登录的时候获取登录用户的类型,根据类型forward到相应的页面去

管理员是固定的帐号?可以根据此账户做判定
比如帐号为admin
如果你判断是admin,request.getRequestDispatcher("你要跳转的页面").forward();

回答3:

一般都是用户信息保存在session中,获取session 转化为用户对象,然后按属性判断是管理员还是普通用户

回答4:

大概就是类似:
if (判断用户)
{
response.redirect(不同页面)
}