查看源代码 http_uri (inets v9.3.1)
旧的 URI 实用模块,请改用 uri_string
此模块自 OTP 23 起已弃用。请使用模块 uri_string
来正确处理 URI,这是自 OTP 21 起推荐使用的模块。
数据类型
与 URI 相关的类型定义
uri_part() = [byte()] | binary()
- 符合 RFC 3986 中 URI 定义的语法,例如, "https://erlang.org.cn/"
有关 URI 的更多信息,请参阅 RFC 3986。
摘要
函数
此函数已弃用。http_uri:decode/1 已弃用;请改用 uri_string:unquote 函数。
-spec decode(QuotedData) -> Data when QuotedData :: unicode:chardata(), Data :: unicode:chardata().
解码可能经过百分号编码的 URI 部分
警告
此函数已弃用。http_uri:encode/1 已弃用;请改用 uri_string:quote 函数。
-spec encode(Data) -> QuotedData when Data :: unicode:chardata(), QuotedData :: unicode:chardata().
执行百分号编码。
警告