• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 70 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0046 秒)

41. [LayaNative3]laya3List 里面的itemrender会被清掉 [ 57%]

...imator添加多个播放状态islooping属性会被覆盖 为什么load 的progress会被执行两次,complete在加载失败时也会执行 采用on绑定事件后,界面释放时,持有的回调对象句柄会被清除吗?谢谢! LayaAirIDE文件树最后一个文件会被状态栏遮挡...

来源: Laya_社区 发布时间: 20240522

42. 官方的示例贴上来,怎么没反映啊 [ 57%]

... completeHandler); xhr.once(Event.ERROR, this, errorHandler); xhr.on(Event.PROGRESS, this, processHandler); xhr.send("https://api.weixin.qq.com/cgi- ... ot%3B, "", "get", "text"); function processHandler(data) { console.log(data); } function errorHandler(data) { alert(2); } function completeHandler(...

来源: Laya_社区 发布时间: 20180419

43. 关于HttpRequest [ 56%]

...nUtils.urlEncode(obj); var hr = new Laya.HttpRequest(); hr.once(Laya.Event.PROGRESS, this, function (e) { console.log(e); }); hr.once(Laya.Event.COMPLETE, this, function () { console.log(hr.data); }); hr.once(Laya.Event.ERROR, this, function (e) { console.log(e); }); hr.send('http://stone.tt.be-xx.c...

来源: Laya_社区 发布时间: 20170628

44. 仅在Android微信小游戏下图片错乱 [ 56%]

... 2 个回复 xxxxxxxxxx 赞同来自: load(url: any, complete?: Handler, progress?: Handler, type?: string, priority?: number, cache?: boolean, group?: string, ignoreCache?: boolean): LoaderManager;   这里的ignoreCache对图片资源不工作! 这是导致划屏的原因。 悬赏充了100块...

来源: Laya_社区 发布时间: 20180609

45. 如何能监听到TouchStart和TouchEnd事件 [ 55%]

...值。*/         static LOADED: string;         /** 定义 progress 事件对象的 type 属性值。*/         static PROGRESS: string;         /** 定义 input 事件对象的 type 属性值。*/         static INPUT: string;         /** 定义 render 事...

来源: Laya_社区 发布时间: 20170601

46. request failed status:0 text: IOS HttpRequest [ 55%]

...533", } alert(JSON.stringify(data)); hr = new HttpRequest(); hr.once(Event.PROGRESS, this, onHttpRequestProgress); hr.once(Event.COMPLETE, this, onHttpRequestComplete); hr.once(Event.ERROR, this, onHttpRequestError); var headers = []; headers.push("Content-Type"); headers.push("application/json"); h...

来源: Laya_社区 发布时间: 20170620

47. 如何在layaair 上使用get方法的xml ,获得节点属性? [ 55%]

...           hr = new HttpRequest();             hr.once(Event.PROGRESS, this, onHttpRequestProgress);             hr.once(Event.COMPLETE, this, onHttpRequestComplete);             hr.once(Event.ERROR, this, onHttpRequestError);             hr.send(NameJosn, nu...

来源: Laya_社区 发布时间: 20160626

48. web和微信端没有问题,打包成apk后 httprequest报Request failed Status:404 text:undefined [ 55%]

...hr.once(Laya.Event.ERROR, this, this.ErrorHandler); this.xhr.on(Laya.Event.PROGRESS, this, this.ProgressHandler); this.xhr.send(Global.WebHost+this.currentRequest.url, this.currentRequest.data, "post", "text", ["Access-Control-Allow-Origin","*", "Access-Control-Allow-Headers","X-Requested-With", "Ac...

来源: Laya_社区 发布时间: 20200629

49. 微信小游戏中加载unity导出的场景报错the .lh file root type must be Scene [ 54%]

...ata);         this._customParse=false;         this.event("progress",1);         this.event("complete",(this.data instanceof Array)? [this.data] :this.data);     } 上面这里直接判断失败,走了false 具体见附件。   望解决 附件 : --> WX3D.rar laya3D工...

来源: Laya_社区 发布时间: 20180101

50. 网络通信 · LayaAir3.0文档 · LAYABOX [ 53%]

...,错误事件等 /** * 请求进度改变时调度。 * @eventType Event.PROGRESS * */ /*[Event(name = "progress", type = "laya.events.Event")]*/ /** * 请求结束后调度。 * @eventType Event.COMPLETE * */ /*[Event(name = "complete", type = "laya.events.Event")]*/ /** * 请求出错时调度...

来源: Laya3.0_文档 发布时间: 20241014