在jQuery AJAX GET调用中传递请求标头

在jQuery AJAX GET调用中传递请求标头,第1张

在jQuery AJAX GET调用中传递请求标头

用途

beforeSend

$.ajax({         url: "http://localhost/PlatformPortal/Buyers/Account/SignIn",         data: { signature: authHeader },         type: "GET",         beforeSend: function(xhr){xhr.setRequestHeader('X-Test-Header', 'test-value');},         success: function() { alert('Success!' + authHeader); }      });

http://api.jquery.com/jQuery.ajax/

http://www.w3.org/TR/XMLHttpRequest/#the-setrequestheader-
method



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5008182.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-14
下一篇 2022-11-15

发表评论

登录后才能评论

评论列表(0条)

保存