大约有 70 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0046 秒)
...imator添加多个播放状态islooping属性会被覆盖 为什么load 的progress会被执行两次,complete在加载失败时也会执行 采用on绑定事件后,界面释放时,持有的回调对象句柄会被清除吗?谢谢! LayaAirIDE文件树最后一个文件会被状态栏遮挡...
来源: Laya_社区 发布时间: 20240522
... 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
...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
... 2 个回复 xxxxxxxxxx 赞同来自: load(url: any, complete?: Handler, progress?: Handler, type?: string, priority?: number, cache?: boolean, group?: string, ignoreCache?: boolean): LoaderManager; 这里的ignoreCache对图片资源不工作! 这是导致划屏的原因。 悬赏充了100块...
来源: Laya_社区 发布时间: 20180609
...值。*/ static LOADED: string; /** 定义 progress 事件对象的 type 属性值。*/ static PROGRESS: string; /** 定义 input 事件对象的 type 属性值。*/ static INPUT: string; /** 定义 render 事...
来源: Laya_社区 发布时间: 20170601
...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
... 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
...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
...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
...,错误事件等 /** * 请求进度改变时调度。 * @eventType Event.PROGRESS * */ /*[Event(name = "progress", type = "laya.events.Event")]*/ /** * 请求结束后调度。 * @eventType Event.COMPLETE * */ /*[Event(name = "complete", type = "laya.events.Event")]*/ /** * 请求出错时调度...
来源: Laya3.0_文档 发布时间: 20241014