我想从html页面发送websocket握手请求,并编写如下代码:
document.cookie = "guestId=xxxx; remember=xxxxxx;";
var ws = new WebSocket("ws://localhost:5000/ws");
但Chrome开发工具中显示的内容显示没有发送Cookie:
General:
Request URL:ws://localhost:5000/ws
Request Method:GET
Status Code:307 Temporary Redirect
Response Headers
Content-Length:59
Content-Type:text/html; charset=utf-8
Date:Fri, 18 Mar 2016 09:39:11 GMT
Location:/preorder/landing/index
Request Headers
Accept-Encoding:gzip, deflate, sdch
Accept-Language:en-US,en;q=0.8,zh-CN;q=0.6,zh;q=0.4
Cache-Control:no-cache
Connection:Upgrade
Host:localhost:5000
Origin:http://localhost:63342
Pragma:no-cache
Sec-WebSocket-Extensions:permessage-deflate; client_max_window_bits
Sec-WebSocket-Key:t3N0vVaLCsOmOXLSh+Arsw==
Sec-WebSocket-Version:13
Upgrade:websocket
User-Agent:Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.80 Safari/537.36
我该如何解决这个问题?为什么请求标头中没有cookie?如果我发送其他未升级的ajax请求,我可以在Dev Tools中看到cookie。为什么会有这样的差异?
答案 0 :(得分:1)
您的来源标头是 http:// localhost:63342 ,WS请求是 ws:// localhost:5000 / ws 所以你的域名是不同的(不同的端口)。我想你的其他ajax请求是 http:// localhost:63342 ,因此浏览器会发送cookie。
答案 1 :(得分:0)
你可以尝试
<br>