ajax如何刪除X-Requested-With

admin發表於2017-03-04

在實際應用中,X-Requested-With一般用來判斷一個請求是否是ajax請求,不過有時候這個並不需要,所以要將其刪除,下面就此就進行一下簡單介紹,希望能夠對需要的朋友帶來或多或少的幫助。

解決方案如下:

[JavaScript] 純文字檢視 複製程式碼
$.ajax({ 
  url: 'http://www.softwhy.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' ); 
    } 
  } 
});

相關文章