后台无法判断ajax请求的解决办法

前端之家收集整理的这篇文章主要介绍了后台无法判断ajax请求的解决办法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
var xhr = new XMLHttpRequest();
xhr.open("get",remoteUrl);
xhr.setRequestHeader("X-Requested-With","XMLHttpRequest");
xhr.onload = function(){};
xhr.send();
public static boolean isAjax(HttpServletRequest request) {
   return request.getHeader("x-requested-with") != null && 
          request.getHeader("x-requested-with").equalsIgnoreCase("XMLHttpRequest");
}
原文链接:https://www.f2er.com/ajax/161977.html

猜你在找的Ajax相关文章