如何使用 CGI 应用程序上传文件
你好 我正在尝试使用 perl cgi-application 上传图像文件。不知道我做错了什么 - 但保存了一个空图像文件(具有正确的名称)。
我的 $picture = $self->query->param('picture') ;
我的$缓冲区; 我的$bytesread;
open (OUTFILE, ">>$user_dir/profile_picture/$picture");
while ($bytesread = read($picture, $buffer, 1024)) {
打印 OUTFILE $buffer;
}
Hi
I am trying to upload image file using perl cgi-application. Not sure what I am doing wrong - but an empty image file (with the right name) gets saved.
my $picture = $self->query->param('picture') ;
my $buffer;
my $bytesread;
open (OUTFILE, ">>$user_dir/profile_picture/$picture");
while ($bytesread = read($picture, $buffer, 1024)) {
print OUTFILE $buffer;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
阅读 CGI.pm 的“创建文件上传字段”部分 文档。在那里您将看到上传方法将返回一个文件句柄。
Read the " CREATING A FILE UPLOAD FIELD" section of CGI.pm documentation. There you will see that the upload method will return a filehandle.
不要忘记您的 HTML 表单元素还需要指定 enctype='multipart/mixed',否则上传文件流不会被发送。
Don't forget your HTML form element also needs to specify enctype='multipart/mixed', otherwise the upload filestream doesn't get sent.