deprecated_mass_assignment_security.rb:17:in `attr_accessible': `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. (RuntimeError)
我尝试了消息中所说的内容,并添加gem 'strong_parameters'
到我的Gemfile
.
但是当我这样做时,rails s
我得到了上面的错误。
更新
我试过:
config.active_record.whitelist_attributes = true
in confgi/application.rb
,也与false
,但实际上我不明白那个选项。