gpt4 book ai didi

perl - 使用 Plack 处理多个文件上传

转载 作者:行者123 更新时间:2023-12-02 11:05:46 26 4
gpt4 key购买 nike

尝试使用 Plack 处理多个文件上传。

我的表格:

<form id="file_upload" action="savefile" method="POST" enctype="multipart/form-data">
<input type="file" name="file[]" multiple>
<button>upload</button>
</form>

选择了两个文件,名为:x1x2Data::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' );

因此,它只包含第二个文件x2,但是当检查文件夹/var/folders/7l/nhyscwy14bjb_sxr_t2gynpm0000gn/T/时,它包含这两个文件已上传。

问题是我如何才能将两个文件添加到脚本中,而不仅仅是最后一个?

最佳答案

for my $upload ($req->upload('file[]')) {
$upload->filename;
}

您还可以调用@uploads = $req->uploads->get_all('file[]')来获取多个值。

参见perldoc Plack::Request (和 Hash::MultiValue )了解更多详细信息。

您在 Data::Dumper 中看不到它们的原因是 Hash::MultiValue 使用一种称为“内向外对象”的技术来保存给定键的备用值。

关于perl - 使用 Plack 处理多个文件上传,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18166156/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com