class Person < ActiveRecord::Base end params = ActionController::Parameters.new(name: 'Bob') Person.new(params) # => ActiveModel::ForbiddenAttributesError params.permit! Person.new(params) # => #<Person id: nil, name: "Bob">
最后更新于5年前
这有帮助吗?