How Upload file using Mojolicious?

后端 未结 3 728
傲寒
傲寒 2021-02-07 19:02

I have been trying out Mojolicious web framework based on perl. And I have try to develop a full application instead of the Lite. The problem I am facing is that I am trying to

3条回答
  •  余生分开走
    2021-02-07 19:33

    To process uploading files you should use $c->req->uploads

    post '/' => sub {
       my $c = shift;
       my @files;
       for my $file (@{$c->req->uploads('files')}) {
         my $size = $file->size;
         my $name = $file->filename;
    
         push @files, "$name ($size)";
         $file->move_to("C:\\Program Files\\Apache Software Foundation\\Apache24\\htdocs\\ProcessingFolder\\".$name);
       }
       $c->render(text => "@files");
    } => 'save';
    

    See full code here: https://stackoverflow.com/a/28605563/4632019

提交回复
热议问题