大约有 1,002 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0061 秒)
Laya_社区(980) Laya2.0_文档(9) Laya3.0_api(3) laya_api(2) Laya2.0_示例(2) Laya_示例(2) Laya3.0_文档(2) Laya2.0_api(2)
...还是要自己领取悬赏了。 private static onRequestComplete(hr:Laya.HttpRequest, call:Laya.Handler):void { call.runWith(hr.data); Http._requests.push(hr); } 2019-06-10 0 1 分享 微博 QZONE 微信 1560063291用户 赞同来自: 已解决,联系我 xyz 2019-06-10 0 0 分享 微博 QZONE ...
来源: Laya_社区 发布时间: 20190609
...常,真机报错:Request failed Status:0 text( 加载场景失败) HttpRequest在ios系统出现Request failed Status:0 text:,安卓没事 scriptEngine 0xc30edooo loadScriptStringWithCodeCache failed 发布QQ包报错 安卓的QQ扫码时运行不出来 求助大佬们!oppo游戏中3d资...
来源: Laya_社区 发布时间: 20190809
...core.js:16316) at EventHandler.__proto.runWith (libs/laya.core.js:1399) at HttpRequest.__proto.event (libs/laya.core.js:1156) at HttpRequest.__proto.complete (libs/laya.core.js:14101) at HttpRequest.__proto._onLoad (libs/laya.core.js:14065) //=======穹顶 var scene = Laya.stage.addChild(new Laya.Sc...
来源: Laya_社区 发布时间: 20181203
...的引用,而不能从内存里回收资源。 我想知道为什么在httprequest里的data不用局部变量在接收请求数据呢? 2017-11-29 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Laya_XS 赞同...
来源: Laya_社区 发布时间: 20171129
...码: function starConnection() { console.log("starConnection"); conn=new HttpRequest(); conn.once(Event.PROGRESS, this, onHttpRequestProgress); conn.once(Event.COMPLETE, this, onHttpRequestComplete); conn.once(Event.ERROR, this, onHttpRequestError); var buffBody=new Byte(); buffBody.endian=Byte.BI...
来源: Laya_社区 发布时间: 20160726
...-type也变成了application/x-www-form-urlencoded 代码如下: static httpRequest(method:string, url:string, data:any, headers:Array<string>, cb:(err:Error, data?:any)=>void) { let req = new Request(); req.on(Event.COMPLETE, this, (data) => { cb(null, data); }); req.on(Event.ERROR, ...
来源: Laya_社区 发布时间: 20170123
...发现loader._http引用着加载结果导致释放不了。 补充: HttpRequest 定义了一个_data保存结果,是不是没必要的?回调完成后可以清空 附件 : --> 2018-10-18 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相...
来源: Laya_社区 发布时间: 20181018
...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
...ministrator/Documents/myLaya/Hello/bin/libs/laya.core.js:1125:59) at HttpRequest.__proto.event (file:///C:/Users/Administrator/Documents/myLaya/Hello/bin/libs/laya.core.js:882:28) TypeError: Cannot read property 'split' of undefined at TiledMap.__proto.mergePath (file:///C:/Users/Adminis...
来源: Laya_社区 发布时间: 20181026
...下例子。 ```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