Flowdock
method

parse_formatted_parameters

Importance_0
v5.0.0.1 - Show latest stable - 0 notes - Class: ActionDispatch::Http::Parameters
parse_formatted_parameters(parsers) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_dispatch/http/parameters.rb, line 60
      def parse_formatted_parameters(parsers)
        return yield if content_length.zero?

        strategy = parsers.fetch(content_mime_type.symbol) { return yield }

        begin
          strategy.call(raw_post)
        rescue # JSON or Ruby code block errors
          my_logger = logger || ActiveSupport::Logger.new($stderr)
          my_logger.debug "Error occurred while parsing request parameters.\nContents:\n\n#{raw_post}"

          raise ParamsParser::ParseError
        end
      end
Register or log in to add new notes.