如何将调用参数($self)委托给其他方法
我正在学习 mojolicious::lite。
在路由器中,将参数委托给控制器,使用此代码即可:
get '/hello/:name' => sub {
my $self = shift;
ControllerTest::hello($self);
};
是否有任何简写方法,例如:
get '/hello/:name' => ControllerTest::hello( shift ); #this code not work
谢谢。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
免责声明:我不是一个狂热的黑客:)
这不会起作用,因为“shift”从当前上下文(来自@_)中提取数据。我猜想最短的(简写)是:
或者可能通过使用子引用:
然后传递到
hello
的第一个参数将是传递给使用的匿名子的所有参数。我还没有尝试过,但我怀疑它会起作用:)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:
or maybe by using a sub reference:
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 :)我认为您应该能够使用完全限定名称直接将其作为方法调用,例如
I think you should be able to call it as a method directly by using the fully qualified name, e.g.