如何使用模型关联导入数据
这是我的情况:
class SampleRequest < ActiveRecord::Base
has_one :sample_request_text_excerpt
accepts_nested_attributes_for :sample_request_text_excerpt
end
class SampleRequestTextExcerpt < ActiveRecord::Base
belongs_to :sample_request
end
在 sample_request 模型中,资产类型字段为 text 和 image ,对于 text 类型不同的 excel sheet 和对于 image 类型不同的 excel sheet , sample_request_text_excerpt 模型中只有某些字段是额外的。
对于单个模型没有问题,而尝试用于关联
此行显示错误:
sample_request.attributes = row.to_hash
上传文本电子表格时显示错误。