• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 64 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0068 秒)

31. Native1.0.1 无法连接wss [ 66%]

....on(Laya.Event.ERROR, this, this.onConnectFail); this.socket.on(Laya.Event.MESSAGE, this, this.onReceive); this.socket.connectByUrl(url); 2018-09-10 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 3 个回复 Laya_Aaron 赞同...

来源: Laya_社区 发布时间: 20180910

32. websocket连接, ws 时没问题,改成 wss 没反应 [ 65%]

...(Laya.Event.OPEN, this, this.openHandler);     this.socket.on(Laya.Event.MESSAGE, this, this.receiveHandler);     this.socket.on(Laya.Event.CLOSE, this, this.closeHandler);     this.socket.on(Laya.Event.ERROR, this, this.errorHandler); private openHandler(event: any = null): void  {     //...

来源: Laya_社区 发布时间: 20180510

33. socket.sent [ 65%]

...ket.on(Laya.Event.OPEN, this, this.openHandler); this.socket.on(Laya.Event.MESSAGE, this, this.receiveHandler); this.socket.on(Laya.Event.CLOSE, this, this.closeHandler); this.socket.on(Laya.Event.ERROR, this, this.errorHandler); } private openHandler(event: any = null): void { //正确建立连接...

来源: Laya_社区 发布时间: 20180210

34. layabox里as3-proto数组转出来有问题 [ 65%]

...Buf-AS3版本.rar,解压后导出了proto。 以下为数组协议示例 message RoomList {     required uint32 roomid = 1;      required uint32 limitcoin = 2;      required uint32 bankercoin = 3;  } message GetRoomListResponse {     required uint32 code = 1;      repeated RoomL...

来源: Laya_社区 发布时间: 20171218

35. websocket无法连接 [ 65%]

... 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 换...

来源: Laya_社区 发布时间: 20180312

36. socket与node服务端连不上?按照官方案例 [ 64%]

...s.socket.on(Laya.Event.OPEN, this, openHandler); this.socket.on(Laya.Event.MESSAGE, this, receiveHandler); this.socket.on(Laya.Event.CLOSE, this, closeHandler); this.socket.on(Laya.Event.ERROR, this, errorHandler); function openHandler(event){ //正确建立连接; console.log("链接"); } functio...

来源: Laya_社区 发布时间: 20180125

37. websocket连接出错 [ 64%]

...a.Event.OPEN, this, openHandler); //建立连接 this.socket.on(Laya.Event.MESSAGE, this, receiveHandler); //接收到数据触发函数 this.socket.on(Laya.Event.CLOSE, this, closeHandler); //关闭事件 this.socket.on(Laya.Event.ERROR, this, errorHandler); //连接出错 function openHandler(even...

来源: Laya_社区 发布时间: 20181107

38. 如何与服务端建立连接 [ 63%]

...st:8989");this.socket.on(Event.OPEN,this,openHandler);this.socket.on(Event.MESSAGE,this,receiveHandler);this.socket.on(Event.CLOSE,this,closeHandler);this.socket.on(Event.ERROR,this,errorHandler); 回到方法 成功失败。。 private function openHandler(event:Object = null):void{//正确建立...

来源: Laya_社区 发布时间: 20180514

39. 服务器websocket c++发送二进制类型包,客户端没有任何事件响应 [ 62%]

...n); socket.on(Laya.Event.CLOSE, this, onSocketClose); socket.on(Laya.Event.MESSAGE, this, onMessageReveived); socket.on(Laya.Event.ERROR, this, onConnectError); 2017-08-22 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 Zzz18815519 相关...

来源: Laya_社区 发布时间: 20170822

40. as3中如何定义html中的id参数 [ 62%]

...(faces):void { trace("faces: "+ faces); }, error:function (code, message):void { trace('Error: ' + message); } }); Laya_Aaron • 2018-06-25 21:01 之后使用需要用js调 需要用__JS__("里面放js代码"); 之前window是把myvideo 声明成全局变量,这样js就...

来源: Laya_社区 发布时间: 20180625