我在apache日志中遇到Use of uninitialized value in print at /usr/lib/perl5/site_perl/5.8.8/jQuery/File/Upload.pm line 680.
错误。我正在使用jquery :: File :: Upload perl模块。
我的Cgi代码如下: -
#!/usr/bin/perl
use jQuery::File::Upload;
my $j_fu = jQuery::File::Upload->new;
$j_fu->upload_dir('/tmp/manish');
$j_fu->handle_request;
$j_fu->print_response;
第680行是: -
print $self->output;
答案 0 :(得分:0)
感谢至少尝试帮助的工具。我通过将我的请求类型从get更改为post来解决它,因为在perl模块中,genrate_output方法是从pre_post方法而不是pre_get调用的。