Thread CGI::Application: run_modes (28 answers)
Opened by esskar at 2005-01-22 03:40

sri
 2005-01-24 19:41
#4206 #4206
User since
2004-01-29
828 Artikel
BenutzerIn
[Homepage] [default_avatar]
[quote=ptk,24.01.2005, 10:28]Bei CGI::Application gibt es doch einen AUTOLOAD-aehnlichen Mechanismus fuer nicht definierte runmodes, oder?[/quote]
Keine ahnung von CGI::Application, aber bei Catalyst kannst du einfach eine action namens "_default" definieren. ;)
Code: (dl )
1
2
3
4
5
6
MyApp->action(
_default => sub {
my ( $self, $c ) = @_;
$c->response->output('Hello World');
}
);

View full thread CGI::Application: run_modes