随着 Ruby 2.0 和 Rails 4.0.0 beta1 的相继发布,许多 Rails 迷都会去尝试,Rails 3、4 之间存有一定差异。对于在 Rails 3 下运行正常的项目,切换到 Rails4 下运行时会出现一些小小的问题。
目前已经遇到的问题,运行时提示:`attr_accessible` is extracted out of Rails into a gem. Please use new recommended protection model for params(strong_parameters) or add `protected_attributes` to your Gemfile to use old one.
偷懒的解决是:1、在 Gemfile 中加入gem 'protected_attributes'
2、重新bundle install