如何将调用参数($self)委托给其他方法

发布于 2024-11-15 13:53:18 字数 315 浏览 5 评论 0原文

我正在学习 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

天涯离梦残月幽梦 2024-11-22 13:53:18

免责声明:我不是一个狂热的黑客:)

这不会起作用,因为“shift”从当前上下文(来自@_)中提取数据。我猜想最短的(简写)是:

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

或者可能通过使用子引用:

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

然后传递到 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:

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 :)

凹づ凸ル 2024-11-22 13:53:18

我认为您应该能够使用完全限定名称直接将其作为方法调用,例如

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

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(); };
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文