您好,欢迎访问一九零五行业门户网

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

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{
}
其它类似信息

推荐信息