Plack で複数のファイルのアップロードを処理しようとしています。
私のフォーム:
<form id="file_upload" action="savefile" method="POST" enctype="multipart/form-data">
<input type="file" name="file[]" multiple>
<button>upload</button>
</form>
と という名前の 2 つのファイルを選択x1
しx2
ました。のData::Dumper
結果:
my $u = $req->uploads;
は
$VAR1 = bless( {
'file[]' => bless( {
'headers' => bless( {
'content-disposition' => 'form-data; name="file[]"; filename="x2"',
'content-type' => 'application/octet-stream',
'::std_case' => {
'content-disposition' => 'Content-Disposition'
}
}, 'HTTP::Headers' ),
'filename' => 'x2',
'tempname' => '/var/folders/7l/nhyscwy14bjb_sxr_t2gynpm0000gn/T/7vt04wIrne',
'size' => 146
}, 'Plack::Request::Upload' )
}, 'Hash::MultiValue' );
そのため、2 番目のファイルのみが含まれていx2
ますが、フォルダーを確認すると、アップロードされた両方のファイル/var/folders/7l/nhyscwy14bjb_sxr_t2gynpm0000gn/T/
が含まれています。
問題は、最後のファイルだけでなく、両方のファイルをスクリプトに取得する方法です。