当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


erlang percent_decode(URI)用法及代码示例


percent_decode(URI) -> Result
OTP 23.2
类型:
URI = uri_string() | uri_map()
Result = 
 uri_string() |
 uri_map() |
    {error, {invalid, {atom(), {term(), term()}}}}

解码输入中可以是 uri_string()uri_map() 的所有百分比编码三元组。请注意,此函数执行原始解码,并且应用于已解析的 URI 组件。直接将此函数应用于标准 URI 可以有效地更改它。

如果输入编码不是 UTF-8,则返回错误元组。

例子:

1> uri_string:percent_decode(#{host => "localhost-%C3%B6rebro",path => [],
1> scheme => "http"}).
#{host => "localhost-örebro",path => [],scheme => "http"}
2> uri_string:percent_decode(<<"%C3%B6rebro">>).
<<"örebro"/utf8>>
警告

直接在 URI 上使用 uri_string:percent_decode/1 并不安全。此示例表明,每次连续应用该函数后,生成的 URI 将发生更改。这些 URI 都不引用相同的资源。

3> uri_string:percent_decode(<<"http://local%252Fhost/path">>).
<<"http://local%2Fhost/path">>
4> uri_string:percent_decode(<<"http://local%2Fhost/path">>).
<<"http://local/host/path">>

相关用法


注:本文由纯净天空筛选整理自erlang.org大神的英文原创作品 percent_decode(URI) -> Result。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。