Загрузка файлов убивает приложение и сервер rails - PullRequest
0 голосов
/ 30 марта 2009

У меня есть простая модель, которая выглядит следующим образом:

def video_file=(input_data)
  unless input_data.to_s.empty?
    newfile = File.open("#{RAILS_ROOT}/public/to_upload/#{self.filename}_vid.f4v", "wb") do |f|
      while buff = input_data.read(4096)
        f.write(buff)
      end
    end
  end
end

и здесь ошибка, которую рельсы удается отобразить, а затем буквально умирает.

 ActiveRecord::StatementInvalid in <ControllerName>

Почему?

1 Ответ

2 голосов
/ 30 марта 2009

Заменить

newfile = File.open(path, "wb") do |f|
while buff = input_data.read(4096)
  f.write(buff)
end

с

if input_data.respond_to?(:read)
  File.open(path, "wb") { |f| f.write(input_data.read) }
end
...