web后端判断是否ajax异步请求

 

String requestType = httpServletRequest.getHeader("X-Requested-With");  

boolean isAjax = "XMLHttpRequest".equals(requestType);

if(isAjax){

 // 是ajax异步请求

 

}else{

// 不是ajax异步请求

 

}

 

 

说明:据说上述方法不是百分之百的准确,使用时需注意。

 

 

 

 

 

 

 

你可能感兴趣的:(Ajax)