标签: ruby-on-rails ruby
有没有办法让你在Ruby On Rails中处理的所有哈希值都是HashWithIndifferentAccess?有很多次我尝试使用符号而不是字符串来访问哈希,例如Model.attributes。
谢谢!
答案 0 :(得分:2)
::Hash = HashWithIndifferentAccess
非常糟糕的主意。