受保护的Rails 4
你好我试过在Rails 4上使用attr_protected
,但是我不能。 这就是说, attr_protected
是从Rails中提取出来的。 请为params(strong_parameters)使用新推荐的保护模型,或者将protected_attributes
添加到您的Gemfile中以使用旧模型。
我能做什么知道?
attr_protected :project_id
你真的应该考虑使用强参数。 否则,随着您的质量分配规则,您将陷入混乱。
但是,如果您坚持,请将其添加到您的Gemfile
:
gem "protected_attributes", "~> 1.0.7"
并运行Bundler:
bundle install
按照建议开始使用强参数(推荐)或移回受保护的属性。
链接地址: http://www.djcxy.com/p/35997.html上一篇: protected Rails 4