perl_help27 has asked for the wisdom of the Perl Monks concerning the following question:
My problem is that in the hook after, I am getting the uri /dosmth/123 but I am interested in the raw path /dosmth/:smth. I printed the whole request and there is nothing inside of it indicative of my needs (no route inside). Any idea how to solve this? Thanks#### Dancer app content get '/dosmth/:smth' => sub { #some code} hook after => sub { print "URI".request->uri; #This is printing /dosmth/123 and I want to +print /dosmth/:smth/ } ###test script $t->request(GET "/dosmth/123"); #where i issue the request
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Dancer2 get the raw uri
by Discipulus (Canon) on Mar 01, 2018 at 21:19 UTC | |
|
Re: Dancer2 get the raw uri
by Mr. Muskrat (Canon) on Mar 01, 2018 at 21:20 UTC | |
by Anonymous Monk on Mar 01, 2018 at 23:55 UTC | |
by perl_help27 (Acolyte) on Mar 02, 2018 at 17:17 UTC | |
by Mr. Muskrat (Canon) on Mar 05, 2018 at 16:13 UTC |