大约有 25 项符合查询结果, 库内数据总量为 30,784 项。 (搜索耗时: 0.0029 秒)
...错如下: 连接出错 Event {isTrusted: true, type: "error", target: WebSocket, currentTarget: WebSocket, eventPhase: 2…} 关闭事件 CloseEvent {wasClean: false, code: 1006, reason: "", type: "close", target: WebSocket…} //-------------------------------------------------------------------...
来源: Laya_社区 发布时间: 20180211
LayaNative WebSocket无法触发onclose LayaNative2.6版本中,对Laya.Socket对象调用close方法后不会派发Event.CLOSE事件 2020-05-20 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 0 个回复 为什么被折叠?...
来源: Laya_社区 发布时间: 20200520
关于websocket连接的问题,连接成功以后,有什么属性去判断是否连接成功吗? 除了监听Laya.Event.OPEN函数意外,还有没有判断连接成功的,比如类似connected 2017-09-22 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已...
来源: Laya_社区 发布时间: 20170922
websocket断网后 chrome下和firefox下表现不一致 websocket断网后 chrome下和firefox下表现不一致 chrome下先触发close事件然后触发error事件 firefox下先触发error事件然后触发close事件 请问laya能统一起来么 2016-12-30 添加评论 免费帖 --> 分享 ...
来源: Laya_社区 发布时间: 20161230
...; <html> <head> <meta charset="UTF-8"> <title>Test WebSocket</title> <script type="text/javascript"> //显示信息 var log = function(s) { if (document.readyState !== "complete") { log.buffer.push(s); } else { document.getEleme...
来源: Laya_社区 发布时间: 20170724
websocket出错 socket=new Laya.Socket(); socket.connectByUrl("ws://192.168.1.229:8282"); //socket.connect("0.0.0.0",8383); output=socket.output; socket.on(Laya.Event.OPEN,this,onSocketOpen); socket.on(Laya.Event.CLOSE,this...
来源: Laya_社区 发布时间: 20170116
App websocket out of memory testWebSocket(){ let client = new PinusWSClient(); client.on(PinusWSClientEvent.EVENT_IO_ERROR, (event) => { }); client.on(PinusWSClientEvent.EVENT_CLOSE, (event) => { //触发条件,手机端把网全关了 this.testWebSocket();//这种方式会导致在短时...
来源: Laya_社区 发布时间: 20190507
Android Native1.0 上主动断开websocket,监听不到onclose事件 Native1.0.6 引擎版本1.8.5 如题,调用的是websocket的close方法。 同样的代码在浏览器上可以正常运作的,onclose可以正常触发。 但是在Native下onclose不能触发,connected状态也还是tru...
来源: Laya_社区 发布时间: 20200426
websocket连接, ws 时没问题,改成 wss 没反应 我完全按官网文档的示例,连接 ws 时没任何问题,但是改用 wss 时没任何反应。 请问是哪里的问题?应该怎么改?或者哪里有连接 wss 的代码片段?谢谢! this.byte = new Laya.Byte(); ...
来源: Laya_社区 发布时间: 20180510
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)...
来源: Laya_社区 发布时间: 20180312