
Mojolicious::Context - Context

use Mojolicious::Context;
my $c = Mojolicious::Context->new;

Mojolicous::Context is a context container.

Mojolicious::Context inherits all attributes from MojoX::Dispatcher::Routes::Context.

Mojolicious::Context inherits all methods from MojoX::Dispatcher::Routes::Context and implements the following new ones.
render $c->render;
$c->render(action => 'foo');
url_for my $url = $c->url_for;
my $url = $c->url_for(controller => 'bar', action => 'baz');
my $url = $c->url_for('named', controller => 'bar', action => 'baz');