作者:青大柠的小号_247 | 来源:互联网 | 2023-09-07 23:22
各位,我使用python的socketServer做服务器,前端html里用websocket请求,报错:websocketfailed:ErrorduringWebS
各位,我使用 python 的 socketServer 做服务器,前端html里 用websocket请求,报错:
websocket failed: Error during WebSocket handshake: Invalid status line。
在手机端运行该html成功。代码如下:
ws = new WebSocket("ws://192.168.5.50:9947");
1 2 3 4 5 6 7 8 9 10 11 12 13
| ws.Onopen= function() {
//var relogin_data = JSON.stringify({"type":"re_login","client_name":"#aa"});
ws.send('init_user:socket_dewei');
};
ws.Onmessage= function(e) {
console.log(e);
};
ws.Onclose= function() {
console.log("onclose");
};
ws.Onerror= function() {
console.log("onerror");
}; |
求问在python的 socketserver下 如何解决前段websocket连接问题 谢谢