我想知道是否有人知道如何在 Catalyst 的模块的 DATA 部分中内联模板(我想使用 Template Toolkit),就像在 Mojolicious 中似乎可能的那样,您可以在其中执行以下操作(来自文档):
# /bar
get '/bar' => sub {
my $self = shift;
$self->stash(one => 23);
$self->render('baz', two => 24);
};
__DATA__
@@ baz.html.ep
The magic numbers are <%= $one %> and <%= $two %>.
它使我在编写代码时更容易维护,尽管稍后我可能会将所有内容移动到单独的文件中。
谢谢,
西蒙妮