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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。