Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Apache2::Request は生の投稿データを取得する方法を提供していないようです。私が行方不明のものはありますか?
または、投稿データを個別に読み取り (コンテンツ ハンドラーで - それ以前に投稿データを台無しにする必要はありません)、それで Apache2::Request を初期化する方法はありますか?
mod_perl クックブックから:
my $r = shift; my $content; $r->read($content,$r->header_in('Content-length')); my @pairs = split(/[&;]/,$content); foreach my $pair (@pairs) { my ($parameter,$value) = split('=',$pair,2); }