Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialLai Yi Ohlsen
2,318 Pointsparams[:title] vs params["title"]
Can you explain why sometimes you use params[:title] vs params["title]?
2 Answers
Jay McGavren
Treehouse TeacherLai Yi Ohlsen In Sinatra, it doesn't matter whether you use a symbol or a string to access the params
object. params
converts any symbol you pass as a key to a string before it looks up the corresponding value.
Don't try this with an ordinary Ruby Hash
, though! In that case, :foo
and "foo"
will be two different keys, with two different values!
my_hash = {:foo => 1, "foo" => 2}
puts my_hash[:foo]
puts my_hash["foo"]
Output:
1
2
Alexander Davison
65,469 PointsI find this I very thorough post that seems excellent to read :)
Allan Glasier
Courses Plus Student 7,736 PointsThat is a great post, thank you for sharing!