當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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