大约有 204 项符合查询结果, 库内数据总量为 30,784 项。 (搜索耗时: 0.0050 秒)
Laya_社区(163) Laya2.0_api(9) laya_api(7) Laya3.0_文档(7) Laya3.0_api(7) Laya2.0_文档(7) Laya2.0_示例(2) Laya_示例(2)
...et状态问题 1.7.11b 和1.7.10 版都出现 在app中 就算 this.socket.close() 后 this.socket.connected 的状态还是true 且 没收到 Laya.Event.CLOSE 事件通知 但在浏览器上是正常的.. 2017-10-10 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结...
来源: Laya_社区 发布时间: 20171010
....socket类里,如图。cleanSocket里才会清connected的值,为什么close里不清,这里是bug吗? 按理来说我都close了你这个还表示连接着... 附件 : --> 2018-12-19 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的...
来源: Laya_社区 发布时间: 20181219
... LITTLE_ENDIAN Accessors connected endian input output Methods cleanSocket close connect connectByUrl event flush hasListener off offAll offAllCaller on once send Constructors constructor new Socket(host?: string | null, port?: number, byteClass?: {}, protocols?: any[] | null, isSecure?: boolean): S...
来源: Laya3.0_api 发布时间: 20231115
...时间,或者点击关闭按钮时的事件 现在的问题是,试了close事件,和close方法都是完成关闭动画,才会触发,我希望是在开始关闭动画前触发。想添加一个声效,望解答。 2019-12-30 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找...
来源: Laya_社区 发布时间: 20191230
...ommonDlg, "CommonDlg", _super); var _proto_ = CommonDlg.prototype; _proto_.closeEffect = Laya.Handler.create(null, this.onCloseEffect, null, true); _proto_.onCloseEffect = function () { console.log("in on close effect") this.close(); } return CommonDlg; })(Laya.Dialog);console.log并未输出任何...
来源: Laya_社区 发布时间: 20171107
...关闭? 一个dialog调用popup或者show后,不管有没有再调用close,dialog的destroyed 都为false,isPopup都为true。 有什么属性可以知道这个dialog是否已关闭? 2017-04-19 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与...
来源: Laya_社区 发布时间: 20170419
... socket.output; socket.on(Event.OPEN, this, onSocketOpen); socket.on(Event.CLOSE, this, onSocketClose); socket.on(Event.MESSAGE, this, onMessageReveived); socket.on(Event.ERROR, this, onConnectError); } function onSocketOpen() { console.log("Connected"); // 发送字符串 socket.send("demonstrate "...
来源: Laya_示例 发布时间: 20241123
...: 与内容相关的链接 提交 4 个回复 OneWay 赞同来自: layabox close之后调用一下 Laya.Resource.destroyUnusedResources(); 2019-02-16 1 0 分享 微博 QZONE 微信 尔东 赞同来自: 手动顶起。 2019-02-15 0 0 分享 微博 QZONE 微信 layabox 赞同来自: close之后调用...
来源: Laya_社区 发布时间: 20190130
...t.on(Event.OPEN, this, onSocketOpen); socket.on(Event.CLOSE, this, onSocketClose); socket.on(Event.MESSAGE, this, onMessageReveived); socket.on(Event.ERROR, this, onConnectError); socket.connect...
来源: Laya_社区 发布时间: 20170209
...(Laya.Event.MESSAGE, this, this.receiveHandler); this.socket.on(Laya.Event.CLOSE, this, this.closeHandler); this.socket.on(Laya.Event.ERROR, this, this.errorHandler); // this.socket.send("hello world");//###################################################### } private openHandler(event: any = null):...
来源: Laya_社区 发布时间: 20180211