DOKK / manpages / debian 12 / libcatalyst-plugin-subrequest-perl / Catalyst::Plugin::SubRequest.3pm.en
Catalyst::Plugin::SubRequest(3pm) User Contributed Perl Documentation Catalyst::Plugin::SubRequest(3pm)

Catalyst::Plugin::SubRequest - Make subrequests to actions in Catalyst

    use 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 );

Make 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.

Takes a full path to a path you'd like to dispatch to.

If the path is passed as a hash ref then it can include body, action, match and path.

An optional second argument as hashref can contain data to put into the stash of the subrequest.

An optional third argument as hashref can contain data to pass as parameters to the subrequest.

Returns the body of the response.

Like "sub_request()", but returns a full Catalyst::Response object.

Catalyst.

Marcus Ramberg, "mramberg@cpan.org"

Tomas Doran (t0m) "bobtfish@bobtfish.net"

Eden Cardim (edenc) "eden@insoli.de"

SRI, for writing the awesome Catalyst framework

MIYAGAWA, for writing the awesome Plack toolkit

Copyright (c) 2005 - 2011 the Catalyst::Plugin::SubRequest "AUTHORS" as listed above.

This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself.

2022-06-09 perl v5.34.0