| Mojolicious documentation | view source | Contained in the Mojolicious distribution. |
Mojo::Message::Request - HTTP 1.1 Request Container
use Mojo::Message::Request;
# Parse
my $req = Mojo::Message::Request->new;
$req->parse("GET /foo HTTP/1.0\x0a\x0d");
$req->parse("Content-Length: 12\x0a\x0d\x0a\x0d");
$req->parse("Content-Type: text/plain\x0a\x0d\x0a\x0d");
$req->parse('Hello World!');
print $req->body;
# Build
my $req = Mojo::Message::Request->new;
$req->url->parse('http://127.0.0.1/foo/bar');
$req->method('GET');
print $req->to_string;
Mojo::Message::Request is a container for HTTP 1.1 requests as described in RFC 2616.
Mojo::Message::Request inherits all attributes from Mojo::Message and implements the following new ones.
env my $env = $req->env;
$req = $req->env({});
Direct access to the environment hash if available.
method my $method = $req->method;
$req = $req->method('GET');
HTTP request method.
urlmy $url = $req->url; $req = $req->url(Mojo::URL->new);
HTTP request URL, defaults to a Mojo::URL object.
Mojo::Message::Request inherits all methods from Mojo::Message and implements the following new ones.
cookiesfix_headers$req = $req->fix_headers;
Make sure message has all required headers for the current HTTP version.
is_securemy $secure = $req->is_secure;
Check if connection is secure.
is_xhrmy $xhr = $req->is_xhr;
Check X-Requested-With header for XMLHttpRequest value.
param my $param = $req->param('foo');
Access GET and POST parameters.
paramsmy $params = $req->params;
All GET and POST parameters, usually a Mojo::Parameters object.
parse $req = $req->parse('GET /foo/bar HTTP/1.1');
$req = $req->parse(REQUEST_METHOD => 'GET');
$req = $req->parse({REQUEST_METHOD => 'GET'});
Parse HTTP request chunks or environment hash.
proxy my $proxy = $req->proxy;
$req = $req->proxy('http://foo:bar@127.0.0.1:3000');
$req = $req->proxy(Mojo::URL->new('http://127.0.0.1:3000'));
Proxy URL for message.
query_paramsmy $params = $req->query_params;
All GET parameters, usually a Mojo::Parameters object.
Mojolicious, Mojolicious::Guides, http://mojolicio.us.
| Mojolicious documentation | view source | Contained in the Mojolicious distribution. |