Mojolicious::Plugin::Subdispatch ================================ This plugin creates a `subdispatch` helper, which helps you creating a request for your actions, and returns the response object with your fully rendered HTML content. The interface has some similarities to Mojo::UserAgent: just use your request method (DELETE, GET, HEAD, POST, PUT) as the method name and pass the same arguments as you would do for `url_for`: plugin 'Subdispatch'; [web app stuff...] my $html = app->subdispatch->get('route_name', foo => 'bar')->body; To build a post request with data, append the data hash at the end: my $res = app->subdispatch->post('route', foo => 'bar', {with => 'data'}); If you want to access the transaction object around the response, use the subdispatch helper with arguments like this: my $tx = app->subdispatch(GET => 'route', foo => 'bar'); my $tx = app->subdispatch(POST => 'route', foo => 'bar', {with => 'data'}); This is an early version and may change without warning. I'll use it to create static HTML pages from a Mojolicious blog, but if you find another good way to use it, please let me know! Author ------ (c) Mirko Westermeier, Licensed under the same terms as Perl itself.