大约有 5 项符合查询结果, 库内数据总量为 31,722 项。 (搜索耗时: 0.0097 秒)
...列表 * success:接口调用成功的回调函数 * fail:接口调用失败的回调函数 * complete:接口调用结束的回调函数(调用成功、失败都会执行) */ //@ts-ignore wx.setUserCloudStorage({ KVDataList: KVDataList, success: () => { console.log("数据保存成功")...
来源: Laya3.0_文档 发布时间: 20251010
... boolean; //是否重新尝试加载 silent?: boolean; //是否提示加载失败 useWorkerLoader?: boolean; //(default = false)是否使用worker加载(只针对IMAGE类型和ATLAS类型,并且浏览器支持的情况下生效) constructParams?: TextureConstructParams; //图片属性,参考...
来源: Laya3.0_文档 发布时间: 20251010
... */ private onHttpRequestError(e: any = null): void { console.error("请求失败:", e); this.logger.text = "请求失败,请重试。\n"; } /** * 请求进度改变触发的回调 * @param e 事件对象 */ private onHttpRequestProgress(e: any = null): void { //进度的百分比 const progress =...
来源: Laya3.0_文档 发布时间: 20251010
...//不要使用Laya.Scene.open("./Scenes/Index.ls"); }); }); // 侦听加载失败 Laya.loader.on(Laya.Event.ERROR, this, this.onError); }); } /** * 当报错时打印错误 * @param err 报错信息 */ onError(err: string): void { console.log("加载失败: " + err); } /** * 加载时侦听 */ onLoa...
来源: Laya3.0_文档 发布时间: 20241014
...//不要使用Laya.Scene.open("./Scenes/Index.ls"); }); }); // 侦听加载失败 Laya.loader.on(Laya.Event.ERROR, this, this.onError); }); } /** * 当报错时打印错误 * @param err 报错信息 */ onError(err: string): void { console.log("加载失败: " + err); } /** * 加载时侦听 */ onLoa...
来源: Laya3.0_文档 发布时间: 20251105