如何在Perl中编码HTTP GET查询字符串?

前端之家收集整理的这篇文章主要介绍了如何在Perl中编码HTTP GET查询字符串?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这个问题与 What’s the simplest way to make a HTTP GET request in Perl?有些有关.

在通过LWP :: Simple发出请求之前我有一个需要序列化/转义的查询字符串组件的哈希.什么是编码查询字符串的最佳方法?它应该考虑到需要在有效URI中转义的空格和所有字符.我认为这可能是一个现有的包,但我不知道如何去找到它.

use LWP::Simple;
my $base_uri = 'http://example.com/rest_api/';
my %query_hash = (spam => 'eggs',foo => 'bar baz');
my $query_string = urlencode(query_hash); # Part in question.
my $query_uri = "$base_uri?$query_string";
# http://example.com/rest_api/?spam=eggs&foo=bar+baz
$contents = get($query_uri);

解决方法

URI::Escape做你想要的
use URI::Escape;

sub escape_hash {
    my %hash = @_;
    my @pairs;
    for my $key (keys %hash) {
        push @pairs,join "=",map { uri_escape($_) } $key,$hash{$key};
    }
    return join "&",@pairs;
}
原文链接:https://www.f2er.com/Perl/172537.html

猜你在找的Perl相关文章