大约有 16 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0029 秒)
... else { var routeLen:number = buffer.getUint8(); route = routeLen ? buffer.readUTFBytes(routeLen) : ""; } } //else if (type === Message.TYPE_RESPONSE) //{ // route = Pomelo.requests[id].route; //} // if (!id && !(typeof(route) == "string")) { route = Routedic.getName(route); } if (route == u...
来源: Laya_社区 发布时间: 20180119
...TFBytes**(value:string)写入字符串,该方法写的字符串要使用 readUTFBytes 方法读取。 - **writeUTFString**(value:string)将 UTF-8 字符串写入字节流。 - **clear**()清除数据。 ```typescript var byte = new Laya.Byte(); byte.clear();//清除所有数据归零。 ``` - **ge...
来源: Laya2.0_文档 发布时间: 20210714
...es**(value:String):void写入字符串,该方法写的字符串要使用 readUTFBytes 方法读取。 - **writeUTFString**(value:String):void将 UTF-8 字符串写入字节流。 - **clear**():void清除数据。 ```typescript var byte:Byte = new Byte(); byte.clear();//清除所有数据归零。 ...
来源: Laya2.0_文档 发布时间: 20210715
...es**(value:string):void写入字符串,该方法写的字符串要使用 readUTFBytes 方法读取。 - **writeUTFString**(value:string):void将 UTF-8 字符串写入字节流。 - **clear**():void清除数据。 ```typescript var byte:Laya.Byte = new Laya.Byte(); byte.clear();//清除所有数据...
来源: Laya2.0_文档 发布时间: 20210715
...lBack); } } } else if (message is ArrayBuffer) { trace(new Byte(message).readUTFBytes()); } socket.input.clear(); } private function OnCallBack():void { MsgManger.SendMsg("LoginOut"); } private function onConnectError(e:Event=null):void { trace("error"); } } } 写了个测试例子,可以收...
来源: Laya_社区 发布时间: 20170724
...} else if (message instanceof ArrayBuffer) { console.log(new Byte(message).readUTFBytes()); } // 清理缓存的服务端发来的数据 this.socket.input.clear(); } // 出现异常后的事件回调 private onConnectError(e: Event = null): void { console.log("error"); } 3.2 Laya.Byte 二进制读...
来源: Laya3.0_文档 发布时间: 20241014