1

Use of uninitialized value in print at /usr/lib/perl5/site_perl/5.8.8/jQuery/File/Upload.pm line 680.在 apache 日志中遇到错误。我正在使用 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;
4

1 回答 1

1

我通过将请求类型从 get 更改为 post 来解决它,因为在 perl 模块中,genrate_output 方法是从 pre_post 方法而不是 pre_get 调用的。

于 2013-09-25T15:32:48.413 回答