3

http://railscasts.com/episodes/396-importing-csv-and-excelに基づいて Roo gem を使用して、CSV ファイルと Excel ファイルを Rails 4 プロジェクト (検証あり) にインポートしようとしています。

Rails3 の代わりに Rails4 と Roo への変更を考慮していくつかの変更を加えた結果、私の ProjectImporter モデルは次のようになりました。

class ProductImport
  include ActiveModel::Model
  attr_accessor :file

  def initialize(attributes = {})
    attributes.each { |name, value| send("#{name}=", value) }
  end

  def persisted?
    false
  end

  def save
    if imported_products.map(&:valid?).all?
      imported_products.each(&:save!)
      true
    else
      imported_products.each_with_index do |product, index|
        product.errors.full_messages.each do |message|
          errors.add :base, "Row #{index + 2}: #{message}"
        end
      end
      false
    end
  end

  def imported_products
    @imported_products ||= load_imported_products
  end

  def load_imported_products
    spreadsheet = open_spreadsheet
    spreadsheet.default_sheet = spreadsheet.sheets.first
    puts "!!! Spreadsheet: #{spreadsheet}"
    header = spreadsheet.row(1)
    (2..spreadsheet.last_row).map do |i|
      row = Hash[[header, spreadsheet.row(i)].transpose]
      product = Product.find_by(id: row['id']) || Product.new
      product.attributes = row.to_hash.slice(*['name', 'released_on', 'price'])
      product
    end
  end

  def open_spreadsheet
    case File.extname(file.original_filename)
      when ".csv" then
        Roo::CSV.new(file.path, nil)
      when '.tsv' then
        Roo::CSV.new(file.path, csv_options: { col_sep: "\t" })
      when '.xls' then
        Roo::Excel.new(file.path, nil, :ignore)
      when '.xlsx' then
        Roo::Excelx.new(file.path, nil, :ignore)
      when '.ods' then
        Roo::OpenOffice.new(file.path, nil, :ignore)
      else
        raise "Unknown file type #{file.original_filename}"
    end
  end
end

(テスト CSV データを使用して) インポートを実行しようとするheader = spreadsheet.row(1)と、エラーで失敗しますundefined method '[]' for nil:NilClassputs私が含めた追加のステートメントは、spreadsheetそれ自体が nil ではないことを確認しています!!! Spreadsheet: #<Roo::CSV:0x44c2c98>。しかし、 など、予想されるほとんどすべてのメソッドを呼び出そうとすると#last_row、同じ undefined method エラーが発生します。

それで、私は何を間違っていますか?

4

1 に答える 1

7

私は同じ問題を抱えていました。ファイルのエンコードに関する問題のようです。このコードを使用して修正しました。

def open_spreadsheet
    case File.extname(file.original_filename)
        when ".csv" then Roo::CSV.new(file.path, csv_options: {encoding: "iso-8859-1:utf-8"})
        when ".xls" then Roo::Excel.new(file.path, nil, :ignore)
        when ".xlsx" then Roo::Excelx.new(file.path, nil, :ignore)
        else raise "Unknown file type: #{file.original_filename}"           
    end 
end

お役に立てば幸いです。

于 2015-05-17T19:05:52.193 に答える