Mojo::Upload
НАЗВАНИЕ
Mojo::Upload - Upload Container
КРАТКИЙ ОБЗОР
use Mojo::Upload; my $upload = Mojo::Upload->new; print $upload->filename; $upload->move_to('/foo/bar/baz.txt');
ОПИСАНИЕ
Mojo::Upload is a container for uploads.
АТРИБУТЫ
Mojo::Upload implements the following attributes.
asset
my $asset = $upload->asset; $upload = $upload->asset(Mojo::Asset::File->new);
Asset containing the uploaded data, defaults to a Mojo::Asset::File object.
filename
my $filename = $upload->filename; $upload = $upload->filename('foo.txt');
Name of the uploaded file.
headers
my $headers = $upload->headers; $upload = $upload->headers(Mojo::Headers->new);
Headers for upload, defaults to a Mojo::Headers object.
name
my $name = $upload->name; $upload = $upload->name('foo');
Name of the upload.
МЕТОДЫ
Mojo::Upload inherits all methods from Mojo::Base and implements the following new ones.
move_to
$upload->move_to('/foo/bar/baz.txt');
Move uploaded data to a specific file.
size
my $size = $upload->size;
Size of upload in bytes.
slurp
my $string = $upload->slurp;
Read all upload data at once.