Function EncodeByRFC3986

  • EncodeByRFC3986(str: string): string
  • RFC3986: https://tools.ietf.org/html/rfc3986

    字符AZ、az、09以及字符 -、_、.、 不编码。

    其它字符编码成%XY的格式,其中XY是字符对应ASCII码的16进制。示例:半角双引号(")对应%22。

    扩展的UTF-8字符,编码成%XY%ZA…的格式。

    空格( )编码成 %20,而不是加号(+)。

    该编码方式与application/x-www-form-urlencoded MIME格式编码算法相似,但又有所不同。

    encodeURIComponent: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent Not Escaped: A-Z a-z 0-9 - _ . ! ~ * ' ( )

    !*()' %21 %2A %28 %29 %27

    Since

    1.1.6

    Version

    2021-12-07

    Parameters

    • str: string

    Returns string

Generated using TypeDoc