[]websocket无法连接
this.socket = new Laya.Socket();
//这里我们采用大端
this.socket.endian = Laya.Byte.BIG_ENDIAN;
this.socket.connectByUrl("ws://"+host+":"+port+"/hoopster");
//建立连接
this.socket.on(Laya.Event.OPEN, this, onOpen);
this.socket.on(Laya.Event.MESSAGE, this, onReceive);
this.socket.on(Laya.Event.CLOSE, this, this.closeHandler);
this.socket.on(Laya.Event.ERROR, this, this.errorHandler);
以上代码,host传入 "localhost" 可以连接上服务器, 将host 换成内网IP
172.19.1.236 就无法连接。 同事在他的机器用JS使用内网IP 也可以连接。
//这里我们采用大端
this.socket.endian = Laya.Byte.BIG_ENDIAN;
this.socket.connectByUrl("ws://"+host+":"+port+"/hoopster");
//建立连接
this.socket.on(Laya.Event.OPEN, this, onOpen);
this.socket.on(Laya.Event.MESSAGE, this, onReceive);
this.socket.on(Laya.Event.CLOSE, this, this.closeHandler);
this.socket.on(Laya.Event.ERROR, this, this.errorHandler);
以上代码,host传入 "localhost" 可以连接上服务器, 将host 换成内网IP
172.19.1.236 就无法连接。 同事在他的机器用JS使用内网IP 也可以连接。
没有找到相关结果
已邀请:
1 个回复
Aar0n
赞同来自: