美好的一天可爱的人,
我想用我的种子数据执行以下操作,但是我收到质量分配错误,这很好。
#Seeds.rb
Category.create(name: 'Top hats', category_id: '44')
#Mass-assignment error
ActiveModel::MassAssignmentSecurity::Error: Can't mass-assign protected attributes: category_id
但是如果我在CSV文件中设置种子数据,我可以使用以下方法成功导入:
#Seeds.rb
require 'csv'
CSV.foreach(Rails.root.join("category.csv"), headers: true) do |row|
BusinessCategory.create! do |category|
category.id = row[0]
category.name = row[1]
end
end
此外,这适用于Rails控制台:
#Rails console
category = Category.new
category.name = 'Top hat'
category.id = 42
我知道可以通过在类别模型中设置attr_accessible :category_id
来轻松修复它,但是1)我想知道更多关于为什么会发生这种情况的原因2)我认为不需要将其设置为可访问我只是导入数据而不需要更改它?
提前致谢。
快乐的日子:)
答案 0 :(得分:1)
为什么不直接更新seeds.rb
中的代码以执行批量分配(也称为传递哈希或属性)
所以而不是
Category.create(name: 'Top hats', category_id: '44')
DO
category = Category.new (name: 'Top hat')
category.category_id = 42 # the irb code said 'id' but in your example its category_id
category.save
希望有所帮助。