Query: mojo::upload
OS: debian
Section: 3pm
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
Mojo::Upload(3pm) User Contributed Perl Documentation Mojo::Upload(3pm)NAMEMojo::Upload - Upload containerSYNOPSISuse Mojo::Upload; my $upload = Mojo::Upload->new; say $upload->filename; $upload->move_to('/home/sri/foo.txt');DESCRIPTIONMojo::Upload is a container for uploads.ATTRIBUTESMojo::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.METHODSMojo::Upload inherits all methods from Mojo::Base and implements the following new ones. "move_to" $upload->move_to('/home/sri/foo.txt'); Alias for "move_to" in Mojo::Asset::File. "size" my $size = $upload->size; Alias for "size" in Mojo::Asset::File. "slurp" my $string = $upload->slurp; Alias for "slurp" in Mojo::Asset::File.SEE ALSOMojolicious, Mojolicious::Guides, <http://mojolicio.us>. perl v5.14.2 2012-09-05 Mojo::Upload(3pm)
Related Man Pages |
---|
mojo::asset::memory(3pm) - debian |
mojo::content::multipart(3pm) - debian |
mojo::content::single(3pm) - debian |
mojo::cookiejar(3pm) - debian |
mojo::message(3pm) - debian |