Hi. I want to route a request to a controller that's dynamically
constructed, base on a place holder in the url. To illustrate, I want do
something like the following:
use Mojo::Base 'Mojolicious';
sub startup {
my $r = $self->routes;
my $route = $r->get('/:customer/boxs/:id');
[ somehow, extract the :customer holder into a variable $customer, then ]
$route->(
controller => "$customer::boxs',
action => 'get_list',
);
}
I tried but can't seem to find way to this, and I'm not sure if this is
possible?
Some pointer is appreciated. Thanks.
--
You received this message because you are subscribed to the Google Groups
"Mojolicious" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/mojolicious.
For more options, visit https://groups.google.com/d/optout.