大约有 17 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0029 秒)
...equest(); xhr.open("get", "res/atlas/comp.png", true); xhr.responseType = "arraybuffer"; xhr.onload = function () { if (this.status == 200) { var blob = new Blob([this.response], { type: "image/png" }); var img = document.createElement("img"); img.onload = function (e) { window.URL.revokeObjectURL(i...
来源: Laya2.0_文档 发布时间: 20210714
...equest(); xhr.open("get", "res/atlas/comp.png", true); xhr.responseType = "arraybuffer"; xhr.onload = function () { if (this.status == 200) { var blob = new Blob([this.response], { type: "image/png" }); var img = document.createElement("img"); img.onload = function (e) { window.URL.revokeObjectURL(i...
来源: Laya2.0_文档 发布时间: 20210715
...equest(); xhr.open("get", "res/atlas/comp.png", true); xhr.responseType = "arraybuffer"; xhr.onload = function () { if (this.status == 200) { var blob = new Blob([this.response], { type: "image/png" }); var img = document.createElement("img"); img.onload = function (e) { window.URL.revokeObjectURL(i...
来源: Laya2.0_文档 发布时间: 20210714
...sz:number)=>void):void; /** * 读取zip中的文件的内容,返回一个ArrayBuffer */ readFile(id:number):ArrayBuffer; close():void; new ():ZipFile; } declare var ZipFile:ZipFile; ``` * 手动更新dcc缓存的功能。 ```javascript interface AppCache{ ... /** * 更新dcc缓存中的一个文...
来源: Laya2.0_文档 发布时间: 20210714
...只需要调用Socket的send函数即可,参数可以是string或者是ArrayBuffer。 发送字符串格式: ```typescript this.socket.send("hello world");//这是发送字符串的形式。 ``` 发送二进制格式的数据: ```typescript this.byte.writeByte(1);//写入一个字节 this.byte...
来源: Laya2.0_文档 发布时间: 20210714
...的数组的length也是2,只是数组中的每一项进行了转化)。 `ArrayBuffer`:二进制数据缓冲区。 上面的三种方法都可以实例化一个Byte,根据参数的不同创建二进制数据。 ```typescript //实例化一个二进制数组Byte var byte:Byte = new Byte(); //或...
来源: Laya2.0_文档 发布时间: 20210715
...的数组的length也是2,只是数组中的每一项进行了转化)。 `ArrayBuffer`:二进制数据缓冲区。 上面的三种方法都可以实例化一个Byte,根据参数的不同创建二进制数据。 ```typescript //实例化一个二进制数组Byte var byte:Laya.Byte = new Laya.Byte...
来源: Laya2.0_文档 发布时间: 20210715
...只需要调用Socket的send函数即可,参数可以是string或者是ArrayBuffer。 发送字符串格式: ```typescript this.socket.send("hello world");//这是发送字符串的形式。 ``` 发送二进制格式的数据: ```typescript this.byte.writeByte(1);//写入一个字节 this.byte...
来源: Laya2.0_文档 发布时间: 20210714
...,只需要调用socket的send函数即可,参数可以是String或者ArrayBuffer。 发送字符串格式 ```java this.socket.send("hello world");//这是发送字符串的形式。 ``` 发送二进制格式的数据 ```java this.byte.writeByte(1);//写入一个字节 this.byte.writeInt16(20);//...
来源: Laya2.0_文档 发布时间: 20210715
...的数组的length也是2,只是数组中的每一项进行了转化)。 `ArrayBuffer`:二进制数据缓冲区。 上面的三种方法都可以实例化一个Byte,根据参数的不同创建二进制数据。 ```typescript //实例化一个二进制数组Byte var byte = new Laya.Byte(); //或...
来源: Laya2.0_文档 发布时间: 20210714