大约有 14 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0030 秒)
1.8.4版本运行oppo小游戏,Laya.URL.customFormat导致无法读取资源 不调用Laya.URL.customFormat的情况下,一切正常,只要重写了就所有资源无法读取。。。 如附件里,只要注掉 Laya.URL.customFormat = function (url) { return url + "?ver=123"; } 就能...
来源: Laya_社区 发布时间: 20190814
...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
...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
...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
...URL路径 通过basePath属性可以设置网络基础路径 通过设置customFormat函数,可以自定义URL格式化的方式 除了默认的通过增加后缀的格式化外,通过VersionManager类,可以开启IDE提供的,基于目录的管理方式来替代 "?v=" 的管理方式 See al...
来源: Laya2.0_api 发布时间: 20190513
...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
... 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
...加上时间戳? 更新: 这个问题可以通过重写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
... 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
...替换。 if (url.indexOf(":")> 0 && Laya.URL.customFormat !=null){ let a = url.replace(Laya.URL.basePath,""); url=Laya.URL.customFormat(a); } 4.恭喜你已经成功了。 通过以上步骤,老玩家...
来源: Laya_社区 发布时间: 20190620