X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst.pm;h=ae07a908d2992077ddabbd81ea69ad6d979bbbfe;hp=f65448c00444701e6e6ef2ebbb3b32438f4f1197;hb=2d802c4a34d83aedcad4fb7686f9f54f24a1fcef;hpb=ba1734df24218f0a9b7351e4b3cf67ac9d0814b5 diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index f65448c..ae07a90 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -3167,12 +3167,15 @@ you really don't need to invoke it. =head2 default_data_handlers -Default Data Handlers that come bundled with L. Currently there is -only one default data handler, for 'application/json'. This is used to parse -incoming JSON into a Perl data structure. It used either L or -L, depending on which is installed. This allows you to fail back to -L, which is a Pure Perl JSON decoder, and has the smallest dependency -impact. +Default Data Handlers that come bundled with L. Currently there are +only two default data handlers, for 'application/json' and an alternative to +'application/x-www-form-urlencoded' which supposed nested form parameters via +L or via L IF you've installed it. + +The 'application/json' data handler is used to parse incoming JSON into a Perl +data structure. It used either L or L, depending on which +is installed. This allows you to fail back to L, which is a Pure Perl +JSON decoder, and has the smallest dependency impact. Because we don't wish to add more dependencies to L, if you wish to use this new feature we recommend installing L or L in @@ -3205,9 +3208,9 @@ sub default_data_handlers { return +{ 'application/x-www-form-urlencoded' => sub { my ($fh, $req) = @_; - my $params = $req->_use_hash_multivalue ? $self->body_parameters->mixed : $self->body_parameters; + my $params = $req->_use_hash_multivalue ? $req->body_parameters->mixed : $req->body_parameters; Class::Load::load_first_existing_class('CGI::Struct::XS', 'CGI::Struct') - ->('build_cgi_struct')->($params) + ->('build_cgi_struct')->($params); }, 'application/json' => sub { Class::Load::load_first_existing_class('JSON::MaybeXS', 'JSON')