1、原生ajax請(qǐng)求方式:
1 var xhr = new XMLHttpRequest();
2 xhr.open("POST", "http://xxxx.com/demo/b/index.php", true);
3 xhr.withCredentials = true; //支持跨域發(fā)送cookies
4 xhr.send();
2、jquery的ajax的post方法請(qǐng)求:
$.ajax({
type: "POST",
url: "http://xxx.com/api/test",
dataType: 'json',
// 允許攜帶證書
xhrFields: {
withCredentials: true
},
// 允許跨域
crossDomain: true,
success:function(){
},
error:function(){
}
})
3、服務(wù)器端設(shè)置:
header("Access-Control-Allow-Credentials: true");
header("Access-Control-Allow-Origin: http://www.xxx.com");
以上所述是小編給大家介紹的Ajax跨域請(qǐng)求COOKIE無法帶上的完美解決辦法,希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!
您可能感興趣的文章:- PHP實(shí)現(xiàn)cookie跨域session共享的方法分析
- 解決前后端分離 vue+springboot 跨域 session+cookie失效問題
- 基于axios 解決跨域cookie丟失的問題
- Angularjs之如何在跨域請(qǐng)求中傳輸Cookie的方法
- 利用nginx解決cookie跨域訪問的方法
- axios中cookie跨域及相關(guān)配置示例詳解
- ASP.Net WebAPI與Ajax進(jìn)行跨域數(shù)據(jù)交互時(shí)Cookies數(shù)據(jù)的傳遞
- Ajax跨域訪問Cookie丟失問題的解決方法
- php跨域cookie共享使用方法
- Cookie跨域問題解決方案代碼示例