![]() |
![]()
| ![]() |
![]()
NAMECatalyst::Plugin::SubRequest - Make subrequests to actions in Catalyst SYNOPSISuse Catalyst 'SubRequest'; my $res_body = $c->subreq('/test/foo/bar', { template => 'magic.tt' }); my $res_body = $c->subreq( { path => '/test/foo/bar', body => $body }, { template => 'magic.tt' }); # Get the full response object my $res = $c->subreq_res('/test/foo/bar', { template => 'mailz.tt' }, { param1 => 23 }); $c->log->warn( $res->content_type ); DESCRIPTIONMake subrequests to actions in Catalyst. Uses the catalyst dispatcher, so it will work like an external url call. Methods are provided both to get the body of the response and the full response (Catalyst::Response) object. METHODS
SEE ALSOCatalyst. AUTHORSMarcus Ramberg, "mramberg@cpan.org" Tomas Doran (t0m) "bobtfish@bobtfish.net" MAINTAINERSEden Cardim (edenc) "eden@insoli.de" THANK YOUSRI, for writing the awesome Catalyst framework MIYAGAWA, for writing the awesome Plack toolkit COPYRIGHTCopyright (c) 2005 - 2011 the Catalyst::Plugin::SubRequest "AUTHORS" as listed above. LICENSEThis program is free software, you can redistribute it and/or modify it under the same terms as Perl itself.
|