当前位置:  开发笔记 > 编程语言 > 正文

Erlang中的URL编码

如何解决《Erlang中的URL编码》经验,为你挑选了4个好方法。

我正在使用erlang http:request将一些数据发布到远程服务.我有帖子工作,但帖子的body()中的数据按原样通过,没有任何url编码导致帖子在远程服务解析时失败.

在Erlang中是否有一个函数类似于Ruby中的CGI.escape用于此目的?



1> 小智..:

我在HTTP模块中也遇到了这个功能.

事实证明,这个功能实际上在erlang发行版中可用,你只需要看起来很难.

> edoc_lib:escape_uri("luca+more@here.com").
"luca%2bmore%40here.com"

它的行为类似于Ruby中的CGI.escape,还有URI.escape,其行为略有不同:

> CGI.escape("luca+more@here.com")
 => "luca%2Bmore%40here.com" 
> URI.escape("luca+more@here.com")
 => "luca+more@here.com" 

edoc_lib



2> 小智..:

至少在R15中有http_uri:encode/1来完成这项工作.我也不建议使用edoc_lib:escape_uri将'='转换为%3d而不是%3D,这会给我带来一些麻烦.



3> Bwooce..:

你可以在这里找到YAWS url_encode和url_decode例程

它们相当简单,虽然注释表明编码对于所有标点符号都不是100%完整的.



4> 小智..:

这是一个完成这项工作的简单功能.它旨在直接使用inets httpc.

%% @doc A function to URL encode form data.
%% @spec url_encode(formdata()).

-spec(url_encode(formdata()) -> string()).
url_encode(Data) ->
    url_encode(Data,"").

url_encode([],Acc) ->
    Acc;

url_encode([{Key,Value}|R],"") ->
    url_encode(R, edoc_lib:escape_uri(Key) ++ "=" ++ edoc_lib:escape_uri(Value));
url_encode([{Key,Value}|R],Acc) ->
    url_encode(R, Acc ++ "&" ++ edoc_lib:escape_uri(Key) ++ "=" ++ edoc_lib:escape_uri(Value)).

用法示例:

httpc:request(post, {"http://localhost:3000/foo", [], 
                    "application/x-www-form-urlencoded",
                    url_encode([{"username", "bob"}, {"password", "123456"}])}
             ,[],[]).

推荐阅读
echo7111436
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有