Skip to content

Html::formhandler and plack::request

zby edited this page Oct 1, 2010 · 1 revision

When you pass the parameters from a Plack::Request object to the form you need to convert them to an ordinary hash:

  my $form = DvdForm->new(
    params => $req->parameters->as_hashref,

where $req is your Plack::Request object.