大约有 65 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0037 秒)
Laya_社区(42) Laya2.0_文档(9) Laya3.0_文档(4) laya_api(3) Laya2.0_api(3) Laya3.0_api(2) Laya2.0_示例(1) Laya_示例(1)
...nSocketOpen); 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 "); // 使用output.writeByte发送 var messag...
来源: Laya_示例 发布时间: 20241118
...etOpen); socket.on(Event.CLOSE, this, this.onSocketClose); socket.on(Event.MESSAGE, this, this.onMessageReveived); socket.on(Event.ERROR, this, this.onConnectError); } onSocketOpen() { console.log("Connected"); // 发送字符串 socket.send("demonstrate "); // 使用output.writeByte发送 let messa...
来源: Laya2.0_示例 发布时间: 20241118
...on(Event.CLOSE, this, onSocketClose); socket.on(Event.MESSAGE, this, onMessageReveived); socket.on(Event.ERROR, this, onConnectError); socket.connect("127.0.0.1", 8080); // ...
来源: Laya_社区 发布时间: 20170209
...3.1 Laya.Sokcet3.2 Laya.Byte 二进制读写四、ProtocolBuffer使用4.1 Message 定义4.2 项目中添加protobuf 类库4.3 加载协议文件4.4 Message 方法4.5 代码示例网络通信 一、概述 在我们的项目开发过程中,除了单机不需要使用网络通信,开发一个网络...
来源: Laya3.0_文档 发布时间: 20241014
...;连接被关闭派发 Event.CLOSE 事件;接收到数据派发 Event.MESSAGE 事件; 除了 Event.MESSAGE 事件参数为数据内容,其他事件参数都是原生的 HTML DOM Event 对象。 Socket connectByUrl(url:String):void 连接到指定的服务端 WebSocket URL。 URL 类似 ws...
来源: laya_api 发布时间: 20170929
...;连接被关闭派发 Event.CLOSE 事件;接收到数据派发 Event.MESSAGE 事件; 除了 Event.MESSAGE 事件参数为数据内容,其他事件参数都是原生的 HTML DOM Event 对象。 Socket connectByUrl(url:String):void 连接到指定的服务端 WebSocket URL。 URL 类似 ws...
来源: Laya2.0_api 发布时间: 20190513
...ks:any = {}; private reqId:number = 0; private _package:IPackage; private _message:IMessage; constructor(){ if(!console.group){ console.group = console.log; console.groupEnd = function(){console.log("----")}; console.info = console.log; console.warn = console.log; console.error = console.log; } this...
来源: Laya_社区 发布时间: 20180119
...可以参考下 模拟的后端数据data.php,内容如下{ "status":0, "message":"Your message has been successfully uploaded!" } package { import flash.display.Sprite; import flash.events.Event; import flash.events.HTTPStatusEvent; import flash.events.IOErrorEvent; import flash.events.ProgressEve...
来源: Laya_社区 发布时间: 20151217
... Laya.init(1136, 640); MiniAdpter.window.wx.onMessage(onGetMessage); Laya.loader.load(urlconfig,new Handler( null,onLoaded),null); function onLoaded():void { trace("urlconfigurlcon...
来源: Laya_社区 发布时间: 20180525
... file: 'file:///e%3A/Web/GameA/client/src/GameMain.ts' severity: '错误' message: 'Import declaration conflicts with local declaration of 'Event'' at: '5,1' source: 'ts' 项目中没有其他地方写这个import, 但这个地方说定义重复 2018-05-22 添加评论 免费帖 --> 分享 微博 QZ...
来源: Laya_社区 发布时间: 20180522