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 perf_counter(Unit)用法及代码示例
- erlang peek(Q :: queue(Item))用法及代码示例
- erlang peek_r(Q :: queue(Item))用法及代码示例
- erlang put用法及代码示例
- erlang ports用法及代码示例
- erlang processes用法及代码示例
- erlang pid_to_list用法及代码示例
- erlang pid_to_list(Pid)用法及代码示例
- erlang processes()用法及代码示例
- erlang put(Key, Val)用法及代码示例
- erlang print(DataOrStats, Options)用法及代码示例
- erlang pseudo(Master, ServerList)用法及代码示例
- erlang parse_erl_exprs(Prompt)用法及代码示例
- erlang put(Key, Value, Map1)用法及代码示例
- erlang part(Subject, PosLen)用法及代码示例
- erlang pad(String, Length)用法及代码示例
- erlang prefix(String :: unicode:chardata(), Prefix :: unicode:chardata())用法及代码示例
- erlang partition(Pred, List)用法及代码示例
- erlang partition(SetOfSets)用法及代码示例
- erlang partition(SetFun, Set)用法及代码示例
- erlang partition(SetFun, Set1, Set2)用法及代码示例
- erlang partition_family(SetFun, Set)用法及代码示例
- erlang product(TupleOfSets)用法及代码示例
- erlang product(Set1, Set2)用法及代码示例
- erlang projection(SetFun, Set1)用法及代码示例
注:本文由纯净天空筛选整理自erlang.org大神的英文原创作品 percent_decode(URI) -> Result。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。