因此,我尝试在我的应用程序中构建一个功能,允许用户上传填充了新产品的电子表格文件。我安装了Roo gem。我为用户创建了一个链接,用于下载模板化的Google电子表格,用于将产品上传到我的应用。出于测试此功能的目的,我使用此模板化工作表上传到我的应用程序。
第一行标题包含在数据库中创建产品所需的属性名称。
我可以上传文件,但无论文件中列出了多少产品,它都只会上传一个产品。此外,导入的产品具有与文件中的属性关联的-nil-值。我可以通过Rails控制台验证这一点。
例如: name:nil,description:nil等。
这是我的Product.rb文件中的相应代码:
def self.import(file)
spreadsheet = open_spreadsheet(file)
header = spreadsheet.row(1)
(2..spreadsheet.last_row).each do |i|
row = Hash[[header, spreadsheet.row(i)].transpose]
product = find_by_id(row["id"]) || new
product.attributes = row.to_hash.slice(*accessible_attributes)
product.save!
end
end
def self.accessible_attributes
['name', 'description', 'category', 'barcode', 'quantity',
'capacity', 'threshold']
end
def self.open_spreadsheet(file)
case File.extname(file.original_filename)
when ".csv" then Roo::Csv.new(file.path, file_warning: :ignore)
when ".xls" then Roo::Excel.new(file.path, file_warning: :ignore)
when ".xlsx" then Roo::Excelx.new(file.path, file_warning: :ignore)
else raise "Unknown file type: #{file.original_filename}"
end
end
这就是我设置路线的方式:
resources :products do
collection { post :import }
end
答案 0 :(得分:2)
好的,我遇到的问题是,在我导入的电子表格中,我的标题行是大写的而不是小写的。还存在容量,阈值和数量属性的问题,因为它们不是产品模型的一部分。
我编辑了电子表格并删除了它正确导入的三个属性,没有任何错误。
答案 1 :(得分:0)
注意:一个电子表格有多个工作表,所以你想要做的就是这个
spreadsheet = open_spreadsheet(file) # this return a spreadsheet
sheet1 = spreadsheet.sheet(0) # this will return the first sheet
puts spreadsheet.sheets # show all sheets