gpt4 book ai didi

Perl WWW::Mechanize::Firefox 和输入类型文件

转载 作者:行者123 更新时间:2023-12-04 16:19:06 25 4
gpt4 key购买 nike

交叉邮寄 http://perlmonks.org/?node_id=981067

我在使用 WWW::Mechanize::Firefox 将文件上传到使用输入类型文件的表单的站点时遇到问题,如下所示:

<form enctype="multipart/form-data" action="uploader.php" method="POST" id="formular">
<input type="hidden" name="MAX_FILE_SIZE" value="100000" />
Choose a file to upload: <input name="image0" type="file" id="image0"/><br />
<input type="submit" value="Upload File" />

uploader.php 的内容如下:
<?php
$target_path = "uploads/";

$target_path = $target_path . basename( $_FILES['image0']['name']);

if(move_uploaded_file($_FILES['image0']['tmp_name'], $target_path)) {
echo "The file ". basename( $_FILES['image0']['name']).
" has been uploaded";
} else{
echo "There was an error uploading the file,". basename( $_FILES['image0']['name'])." please try again!";
}
?>

我用于上传文件的代码如下:
#!/usr/bin/perl
use strict;
use warnings;
use WWW::Mechanize::Firefox;

my $bot = WWW::Mechanize::Firefox->new( autoclose => 0,activate =>1);

$bot->get('http://127.0.0.1/file/index.html');
$bot->form_id('formular');
$bot->field('image0','IMAGE.JPG');
$bot->submit;

执行没有错误,提交表单但image0中没有任何内容。

我使用的 WWW::Mechanize::Firefox 版本是 0.66 我的 perl 版本是:v5.10.0 为 MSWin32-x86-multi-thread 构建

谢谢

最佳答案

为什么不尝试在 field() 中添加图像文件的整个路径和键/值对方法类似

my $image_path = "/home/images/IMAGE.JPG";
$bot->field(image0=>$image_path);
$bot->submit();

另外,假设 WWW::Mechanize::Firefox继承所有 LWP::UserAgents方法,在 $bot->submit(); 之前包含下面的代码
$bot->add_handler("request_send",  sub { shift->dump; return });
$bot->add_handler("response_done", sub { shift->dump; return });

这将启用登录您的代码。注意日志文件中的请求和响应代码,例如“HTTP 200 OK”或“HTTP 302 Found”。这些是标准的 HTTP 响应代码,因此您会知道您正在获得正确的响应。

关于Perl WWW::Mechanize::Firefox 和输入类型文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11430931/

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