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

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

1. 1.8.4版本运行oppo小游戏,Laya.URL.customFormat导致无法读取资源 [ 100%]

1.8.4版本运行oppo小游戏,Laya.URL.customFormat导致无法读取资源 不调用Laya.URL.customFormat的情况下,一切正常,只要重写了就所有资源无法读取。。。 如附件里,只要注掉 Laya.URL.customFormat = function (url) {     return url + "?ver=123"; } 就能...

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

2. URL的代码修改建议 [ 99%]

...ath"; //if (url.indexOf(":")> 0)return url;   这里建议是先执行customFormat 再去执行if (url.indexOf(":")> 0)return url;  因为用户可能有特殊的customFormat流程,所以应该是这两句话调下位置 //if (URL.customFormat !=null)url=URL.customFormat(url,base); if (UR...

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

3. laya.net.URL [ 95%]

...ies PropertyDefined By  basePath : String[static] 基础路径。URL  customFormat : Function[static] 自定义url格式化。例如: customFormat = function(url:String):String{} URL  path : String[read-only] 地址的路径。URL  rootPath : String[static] 根路径。URL  url : String...

来源: laya_api 发布时间: 20170929

4. laya.net.URL_API3.0 [ 94%]

...URL路径 通过basePath属性可以设置网络基础路径 通过设置customFormat函数,可以自定义URL格式化的方式 Hierarchy URL Index Constructors constructor Properties basePath basePaths rootPath version Accessors path url Methods __init__ customFormat formatURL getFileName getPat...

来源: Laya3.0_api 发布时间: 20231115

5. laya.net.URL [ 94%]

...URL路径 通过basePath属性可以设置网络基础路径 通过设置customFormat函数,可以自定义URL格式化的方式 除了默认的通过增加后缀的格式化外,通过VersionManager类,可以开启IDE提供的,基于目录的管理方式来替代 "?v=" 的管理方式 See al...

来源: Laya2.0_api 发布时间: 20190513

6. 引擎中的修改意见 [ 82%]

...this._http.statusText + e.toString()); } 4、URL中formatURL方法中使用customFormat传入参数有问题, 多了个base public static function formatURL(url:String, base:String = null):String { if (!url) return "null path"; //如果是全路径,直接返回,提高性能 if (url.indexOf(":") ...

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

7. 微信小游戏 关于新版本1.7.15beat 资源管理的问题 [ 80%]

...    laya.core.js 里面 URL.formatURL 里面修改         if (URL.customFormat !=null)url=URL.customFormat(url,base);         if (url.indexOf(":")> 0)return url; 才能加载到外部资源地址的图片   2.已经找到问题是加载里面没有对文件 laya.wxmin.js 里面...

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

8. 图集类型(ATLAS)文件的的png文件没有加上时间戳 [ 80%]

...加上时间戳?     更新: 这个问题可以通过重写Laya.URL.customFormat来实现,例如: var IMAGE_VERSION = "20170610"; Laya.URL.customFormat = function (url) { if (!Render.isConchApp && url.indexOf("?v=") < 0) url += ("?v=" + IMAGE_VERSION); return url; } 附件 : -->...

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

9. Laya中Button等组件lose skin的问题 [ 78%]

...      if (url.indexOf(":")> 0)return url;         if (URL.customFormat !=null)url=URL.customFormat(url,base);         var char1=url.charAt(0);         if (char1==="."){             return URL.formatRelativePath((base || URL.basePath)+url);        ...

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

10. 【解决】微信小游戏资源热更新/缓存更新 [ 77%]

...替换。         if (url.indexOf(":")> 0 && Laya.URL.customFormat !=null){             let a = url.replace(Laya.URL.basePath,"");             url=Laya.URL.customFormat(a);         }  4.恭喜你已经成功了。   通过以上步骤,老玩家...

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