小程序websocket向服务端握手不成功
小程序websocket向服务端握手不成功,在服务器那里没有接收到传过去的header,服务器端是没有问题的。连接部分程序如下: Connect:function(even){ wx.connectSocket({ url: 'wss://wanzhuanxingzhe.oicp.net:29087', success: function(){ isConnect: true console.log("连接成功...") }, fail: function(){ isConnect: false console.log("连接失败...") } }); wx.onSocketOpen(function (res) { console.log('WebSocket连接已打开!') }); wx.onSocketError(function (res) { console.log('WebSocket连接打开失败,请检查!') }) }