vote up 0 vote down star

Sinatra makes it easy to access any particular incoming form field by name:

post "/" do
  params['form_field_name']
end

But how does one enumerate over all the form fields in a request? I found nothing in the documentation. I even tried

request.body.split('&')

but request.body is an instance of StringIO, and not a string.

flag

3 Answers

vote up 1 vote down

If params is a hash, you can try:

params.keys.each do |k|
   puts "#{k} - #{params[k]}"
end
link|flag
vote up 0 vote down

its just a hash :P so just iterate it like you would with any hash

link|flag
Yes, params is a hash - but it is "the union of GET and POST data" as the Rack API docs put it. I needed a way to find just the POST data, so the request.POST method is ideal. – davidstamm Oct 30 at 21:44
vote up 0 vote down

I just discovered in Sinatra's excellent API docs that Sinatra::Request is a subclass of Rack::Request. The request object available to Sinatra handlers inherits has a POST method which returns a hash of submitted form fields.

request.POST.each { |k,v| puts "#{k} = #{v}" }
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.