大约有 22 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0045 秒)
...行翻转? matter中layasprite怎么改变图片大小? TypeScript下HttpRequest发送Post请求有Bug? Laya["MiniAdpter"].nativefiles 在QQ小游戏中无法读取到 Adobe Flash Builder 4.7无法编译Laya2.6.1创建的3D示例项目 关于发布oppo、vivo快游戏,无法生成Rpk问题 Lay...
来源: Laya_社区 发布时间: 20170701
...登录 发起人 banying 相关问题 解决跨域相关! TypeScript下HttpRequest发送Post请求有Bug? LayaNative ios上js访问不到JSBridge类中的方法,请求官方帮助, laya怎么跨域加载图片 list拉到顶部的时候,如何防止触发多次请求 http 请求 once 的 回调...
来源: Laya_社区 发布时间: 20170719
...254.151.248/sf_serve ... 3B%3B alert("url=" + url); var req = new laya.net.HttpRequest(); req.on(laya.events.Event.COMPLETE, null, cb_onSuccess); req.on(laya.events.Event.ERROR, null, cb_onFail); req.send(url); } function cb_onSuccess(response) { alert("response=" + response); // 成功输出:{"re...
来源: Laya_社区 发布时间: 20161103
...idu.com,这个加头后,为啥还连不上, 看代码-> this.hr=new HttpRequest(); this.hr.once(Laya.Event.PROGRESS, this, this.onHttpRequestProgress); this.hr.once(Laya.Event.COMPLETE, this, this.onHttpRequestComplete); this.hr.once(Laya.Event.ERROR, this, this.onHttpRequestError); this.hr.s...
来源: Laya_社区 发布时间: 20151028
... 要回复问题请先登录 发起人 archerxy 相关问题 TypeScript下HttpRequest发送Post请求有Bug? LayaNative ios上js访问不到JSBridge类中的方法,请求官方帮助, list拉到顶部的时候,如何防止触发多次请求 http 请求 once 的 回调参数,如何传递和接...
来源: Laya_社区 发布时间: 20170621
...听不到 求指点3d射线碰撞和UI点击穿透的问题 TypeScript下HttpRequest发送Post请求有Bug? 图集打包找不到图集文件 点击代码编辑模器 就提示无法打开代码编辑器 请配置 这个怎么解决? LayaNative ios上js访问不到JSBridge类中的方法,请求...
来源: Laya_社区 发布时间: 20190701
网络通信一、概述二、Http连接2.1 Laya.HttpRequest2.2 GET2.3 POST2.4 扩展HttpRequest三、 WebSocket连接3.1 Laya.Sokcet3.2 Laya.Byte 二进制读写四、ProtocolBuffer使用4.1 Message 定义4.2 项目中添加protobuf 类库4.3 加载协议文件4.4 Message 方法4.5 代码示例网...
来源: Laya3.0_文档 发布时间: 20241014
...teHandler()); /** * 作用是将一个Http的消息组装成一个完成的HttpRequest或者HttpResponse,那么具体的是什么 * 取决于是请求还是响应, 该Handler必须放在HttpServerCodec后的后面 */ pipeline.addLast("httpObjectAggregator", new HttpObjectAggregator(8192)); //用...
来源: Laya_社区 发布时间: 20170209
...下例子。 ```java package { import laya.events.Event; import laya.net.HttpRequest; import laya.utils.Browser; public class Main { public function Main() { //初始化引擎 Laya.init(500,500); var httpreq:HttpRequest = new HttpRequest(); httpreq.on(Event.COMPLETE,this,this.completeHandler); httpr...
来源: Laya2.0_文档 发布时间: 20210715
...eo; constructor() { //初始化引擎 Laya.init(500,500); var httpreq:Laya.HttpRequest = new Laya.HttpRequest(); httpreq.on(Laya.Event.COMPLETE,this,this.completeHandler); httpreq.on(Laya.Event.ERROR,this,this.errorHandler); httpreq.send("demo1.js"); } private completeHandler(e:any):void{ var script...
来源: Laya3.0_文档 发布时间: 20241014