I am learning mojolicious::lite.

In router, delegate the parameter to controller, use this code ok:

get '/hello/:name' => sub {
  my $self = shift;
  ControllerTest::hello($self);
  };

Should there any short hand method, eg:

get '/hello/:name' => ControllerTest::hello( shift ); #this code not work

thanks.

link|improve this question

57% accept rate
Your intent isn't clear. In high-level terms, what are you trying to do? – Greg Bacon Jun 15 '11 at 16:00
Feels like you should be using Mojolicious and not Mojolicious::Lite – Øyvind Skaar Jun 20 '11 at 12:10
feedback

2 Answers

up vote 3 down vote accepted

Disclaimer: I'm not a mojolicious hacker :)

That won't work since 'shift' pulls data from the current context (from @_). I would guess the shortest (short hand) would be:

get '/hello/:name' => sub { ControllerTest::hello( shift ); };

or maybe by using a sub reference:

get '/hello/:name' => \&ControllerTest::hello

Then the first argument passed into hello would be all the args passed to the anonymous sub used. I haven't tried this but I suspect it will work :)

link|improve this answer
I haven't tried it either, but this should work and is probably the shortest way. – Eric Strom Jun 15 '11 at 14:28
1  
There's also the semi-mysterious (if you haven't read perlsub): get '/hello/:name' => sub { &ControllerTest::hello; }; And if you want to get really weird: get '/hello/:name' => sub { goto \&ControllerTest::hello; }; – daotoad Jun 15 '11 at 15:01
All methods in this answer works, include coment by daotoad. Thanks. – Weiyan Jun 16 '11 at 5:20
feedback

I think you should be able to call it as a method directly by using the fully qualified name, e.g.

get '/hello/:name' => sub { $self->ControllerTest::hello(); };
link|improve this answer
Can't call method "param" on an undefined value at lib/ControllerTest.pm line 6. The parameter not pass to the hello() method. – Weiyan Jun 16 '11 at 5:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.