- or download this
my $id = $self->query->param('id');
$self->param("object") = $self->get_obj($id) if $id;
- or download this
sub foo {
my $self = shift;
...
# ... the rest
}
- or download this
sub cgiapp_prerun {
# ...
...
$self->param("object") = $self->get_obj($id);
# ...
}