perl HTTP:Request 中POST问题

perl HTTP:Request 中POST问题

my $URL = 'http://www.baidu.com/';
my $res = LWP::UserAgent->new->request(new HTTP::Request GET=>$URL);

print header,$res->content;

如上所示,用GET方式传值还是这里的GET另有其他意思。
HTTP::Request里的POST传值是如何传递的饿。。。
会请写几句代码举个例子,伪代码也好,谢谢。
直接$ua->post不是很方便吗?

[Copy to clipboard] [ - ]
CODE:
       $ua->post( $url, \%form )
       $ua->post( $url, \@form )
       $ua->post( $url, \%form, $field_name => $value, ... )