概述
X-Requested-With常用于判断是不是ajax请求
但是有时我们会有需要删除X-Requested-With的情况
下面介绍一种方式 js代码
复制代码 代码如下:
$.ajax({
url: 'http://www.zhangruifeng.com',
beforeSend: function( xhr ) {
xhr.setRequestHeader('X-Requested-With', {toString: function(){ return ''; }});
},
success: function( data ) {
if (console && console.log){
console.log( 'Got data without the X-Requested-With header' );
}
}
});
附,判断ajax请求的方式 java代码
复制代码 代码如下:
if (request.getHeader("x-requested-with") != null
&& request.getHeader("x-requested-with").equalsIgnoreCase("XMLHttpRequest")) {
//异步请求
}else{
}
最后
以上就是威武大神为你收集整理的如何从jQuery的ajax请求中删除X-Requested-With的全部内容,希望文章能够帮你解决如何从jQuery的ajax请求中删除X-Requested-With所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复