每当我发送信息时,对方都不会收到。另外,在client.js,socket.emit("new-user-joined", name);中,在这一行中,名称被弃用。client.js:-
// Get DOM elements in respective Js variables("send", me
message' column
def handleMessage(name, msg): # Pass 'name' & 'msg' from the socket# ...and the 'msg' in 'message=msg' is the passed-in 'msg' variable from the socket./1.4.8/
我试图在使用websockets时减少socket.io带宽。我切换到二进制数据,但是在浏览器开发人员控制台中,数据包被发送为:
[ 'type of the packet (first argument of .emit)', associated data ]我只使用一种数据包类型,因此这会造成不必要的开销--发送无用的字节,并且整个事情都是毫无理由地进行json编码的。我如何摆脱数据包类型,只发送原始数据?