struts用ajax访问的时候

发布于 2021-11-26 09:20:19 字数 1559 浏览 873 评论 2

/*
	 * 用户登录
	 * 
	 * */
	public String login(){
		try {	
				FormValidate formValidate = FormValidate.getInstance();
				//1.先做格式检查,如果不对,直接返回
				
				if(!formValidate.isUsernameValid(model.getUsername()) || !formValidate.isPasswordValid(model.getPassword())){
					inputStream = new ByteArrayInputStream("用户名或密码不合法,长度在6-12位".getBytes("UTF-8"));
					return "tips"; 
				}
				//2.去数据库中查
				User user = userService.checkByUsernameAndPwd(model);	
				if(user != null){
					ActionContext.getContext().put("user", user);
					return "toForwardPage";
				}else{
					inputStream = new ByteArrayInputStream("用户名或者密码错误".getBytes("UTF-8"));
				}
			} catch (UnsupportedEncodingException e) {
				try {
					inputStream = new ByteArrayInputStream("服务器正忙,请稍后再试".getBytes("UTF-8"));
				} catch (UnsupportedEncodingException e1	) {
					// TODO Auto-generated catch block
					e1.printStackTrace();
				}
			}finally{
				if(inputStream != null){
					try {
						inputStream.close();
					} catch (IOException e) {
						// TODO Auto-generated catch block
						e.printStackTrace();
					}
				}
			}
		
		return "tips"; 
		
	}



if(user != null){
					ActionContext.getContext().put("user", user);
					return "toForwardPage";

 "tips"在struts配置文件里配的是流,供ajax访问的。这一行成功的时候,我期望的结果是跳转到来时的页面,这个toForwardPage在配置文件里配了。但是结果是,ajax依然能成功,并且把toForwardPage配置的页面返回来了。新手,觉得很受伤。这个登陆注册的小功能看上去不难,做了一天了,问题百出。请指点

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

疾风者 2021-11-29 15:18:41
//拦截ajax请求单独处理
private boolean isAjaxRequest(HttpServletRequest request) {
 String header = request.getHeader("X-Requested-With");
 if (header != null && "XMLHttpRequest".equals(header))
 return true;
 else
 return false;
}

后知后觉 2021-11-28 22:55:33

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文