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


Elixir URI.encode_www_form用法及代码示例


Elixir语言中 URI.encode_www_form 相关用法介绍如下。

用法:

encode_www_form(string)
@spec encode_www_form(binary()) :: binary()

string 编码为 "x-www-form-urlencoded"。

注意 "x-www-form-urlencoded" 未指定为 RFC 3986 的一部分。但是,它是浏览器对查询字符串和表单数据进行编码的常用格式。

示例

iex> URI.encode_www_form("put: it+й")
"put%3A+it%2B%D0%B9"

相关用法


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