当前位置: 移动技术网 > IT编程>开发语言>JavaScript > 如何从jQuery的ajax请求中删除X-Requested-With

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

2019年03月19日  | 移动技术网IT编程  | 我要评论

x-requested-with常用于判断是不是ajax请求

但是有时我们会有需要删除x-requested-with的情况

下面介绍一种方式 js代码

. 代码如下:


$.ajax({
url: 'https://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{

}

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网