If you wanted to print all of the parameters, the easiest way would be to use the inspect
puts params.inspect
or better, use the Rails logger
Rails.logger.debug params.inspect
In your html/ERB, you can use
<%= params.inspect %>
If you wanted to print all of the parameters, the easiest way would be to use the inspect
puts params.inspect
or better, use the Rails logger
Rails.logger.debug params.inspect
In your html/ERB, you can use
<%= params.inspect %>