エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
NAME Catalyst::Plugin::Params::Nested - Nested form parameters (ala Ruby on Rails). SYNOPSIS use ... NAME Catalyst::Plugin::Params::Nested - Nested form parameters (ala Ruby on Rails). SYNOPSIS use Catalyst qw/Params::Nested/; # using this html <form ...> <!-- can be with either subscripted or dot notation --> <input name="foo[bar]" ... /> <input name="foo.gorch" ... /> </form> # turns params into hashrefs: $c->req->param('foo')->{bar}; $c->req->params({ # extra params foo => { bar => ..., gorch