>  Q&A  >  본문

javascript - Ajax跨域请求如何附带Cookie

被请求端返回头已设置

Access-Control-Allow-Credentials:true
Access-Control-Allow-Headers:Origin, Accept-Language, Accept-Encoding,
X-Forwarded-For, Connection, Accept, User-Agent, Host, Referer,
Cookie, Content-Type, Cache-Control, *
Access-Control-Allow-Origin:根据Referer

javascript 代码如下

var x=new XMLHttpRequest();
x.open('GET','http://reiove.duoshuo.com/api/sites/listVisitors.json',1);
x.onload=function(){
    console.log(x.responseText);
};
x.send();

但这样请求过去header里并没有附带 reiove.duoshuo.com 的 Cookie

如何让发送请求时附带所请求url站点的Cookie?

巴扎黑巴扎黑2773일 전528

모든 응답(1)나는 대답할 것이다

  • 怪我咯

    怪我咯2017-04-10 13:12:34

    需要本地带上x.withCredentials = true;
    在远端带上Access-Control-Allow-Credentials: true(你已经带了)

    见 http://www.w3.org/TR/XMLHttpRequest/#the-withcredentials-attribute

    회신하다
    0
  • 취소회신하다