The URL class provides URL formatting and version management.

  • The engine automatically calls the formatURL function to format URL paths when loading resources.
  • You can set the network base path through the basePath property.
  • By setting the customFormat function, you can customize the way URLs are formatted.

URL 类提供URL格式化和版本管理功能。

  • 引擎加载资源时,会自动调用formatURL函数格式化URL路径。
  • 通过basePath属性可以设置网络基础路径。
  • 通过设置customFormat函数,可以自定义URL格式化的方式。

构造函数

  • 参数

    • url: string

      The URL to be formatted.

    返回 URL

    Create a new URL instance.

    创建一个新的 URL 实例。

属性

basePath: string

Base path. If not set, it defaults to the path of the current web page. The final address will be formatted as basePath + relative URL address.

基础路径。如果不设置,默认为当前网页的路径。最终地址将被格式化为 basePath + 相对URL地址。

basePaths: Record<string, string> = {}

Extended base path mapping table. For example, {"aa/":"http://abc.com/"}, then resources with paths starting with aa/ will be mapped to http://abc.com/.

扩展的基础路径映射表。例如,{"aa/":"http://abc.com/"},则把路径以aa/开头的资源映射到http://abc.com/下。

customFormat: Function = ...

Custom URL formatting function. For example: customFormat = function(url:String):String{}

自定义URL格式化的方式。例如:customFormat = function(url:String):String{}

version: Record<string, string> = {}

URL address version mapping table. For example, {"aaa/bb.png":"edcba","aaa/bb.png":"1342a"}. By default, after formatting through formatURL, it will automatically generate an address like "aaa/bb-1342a.png".

URL地址版本映射表。例如,{"aaa/bb.png":"edcba","aaa/bb.png":"1342a"}。默认情况下,通过formatURL格式化后,会自动生成为"aaa/bb-1342a.png"的地址。

访问器

  • get path(): string

    返回 string

    The folder path of the address (excluding the file name).

    地址的文件夹路径(不包括文件名)。

方法

  • 包含normalizedURL功能,并且合并base,如果base没有提供,则使用URL.basePath或者URL.rootPath。

    参数

    • url: string

      地址。

    • 可选base: string

      基础路径,如果没有,则使用URL.basePath或者URL.rootPath。

    返回 string

    格式化处理后的地址。

  • 参数

    • url: string

      The URL address.

    返回 string

    The file name.

    Get the file name of the specified URL.

    获取指定 URL 的文件名。

  • 参数

    • url: string

      The URL address.

    返回 string

    The folder path with a trailing slash (/).

    Get the folder path of the specified URL (excluding the file name). Note: the returned path has a trailing slash (/).

    获取指定 URL 的文件夹路径(不包括文件名)。注意:末尾有斜杠(/)。

  • 参数

    • url: string

      The input URL or UUID.

    返回 string

    The resource URL.

    Get the resource URL by UUID.

    通过 UUID 获取资源 URL。

  • 参数

    • url: string

      The URL to check.

    返回 string

    The version string or null if not found.

    Get the version string of the URL.

    获取 URL 版本字符。

  • 返回 void

    Initialize file extension overrides for mini-game.

    初始化小游戏的文件扩展名覆盖。

  • 参数

    • base: string

      The base path.

    • path: string

      The path to join.

    返回 string

    The combined and normalized path.

    Combine and normalize relative paths.

    组合相对路径并格式化。

  • 参数

    • url: string

      The URL to normalize.

    返回 string

    The normalized URL.

    Normalize a relative path. Mainly handles cases with '.' and '..'.

    格式化相对路径。主要是处理 '.' 和 '..' 这些情况。

  • 参数

    • originalExts: string[]

      The original extensions. For example, ["scene"].

    • targetExt: string

      The target extension to convert to. For example, "json".

    • 可选miniGameOnly: boolean

    返回 void

    Override the file extension for downloading.

    下载时,转换 URL 的扩展名。

  • 参数

    • url: string

      The address to be processed.

    返回 string

    The processed address.

    Process automatic conversion of file extensions.

    处理扩展名的自动转换。