Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
Dearest Monks,
How do I access GET query parameters when using chained catalyst endpoints? For example:
# /example/page?tag=value&tag2=value2 sub page :GET Chained('example') PathPart('') ??? { my ( $self, $c ) = @_; my $q_params = $c->req->params; ... }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Catalyst chains and GET query parameters
by Your Mother (Archbishop) on May 31, 2019 at 20:30 UTC | |
|
Re: Catalyst chains and GET query parameters
by daxim (Curate) on May 31, 2019 at 13:34 UTC |