×

如何从jQuery的ajax请求中删除X-Requested-With

作者:Terry2017.02.12来源:Web前端之家浏览:10451评论:0
关键词:JQueryJS
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{

}

您的支持是我们创作的动力!
温馨提示:本文作者系Terry ,经Web前端之家编辑修改或补充,转载请注明出处和本文链接:
https://www.jiangweishan.com/article/svg1486828800527.html

网友评论文明上网理性发言已有0人参与

发表评论: