Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以将 HashWithIndifferentAccess 作为 Rails 等 Sinatra 控制器中的参数的默认设置,以便我可以在控制器中使用符号而不是字符串?
post '/books' do Book.create(title: params[:book][:title]) end
代替
post '/books' do Book.create(title: params['book']['title']) end