web-dev-qa-db-ja.com

Ruby on railsでファイルをアップロードするには?

私はRuby on Railsで非常に新しいです。問題に悩まされています。あらゆる種類のファイル(テキスト、画像など)をアップロードできるファイルアップロード機能を作成したいです。 )。私のコントローラーファイルは(upload_controller.rb)です:

class UploadController < ApplicationController
def index
    render :file => 'app\views\upload\uploadfile.html.erb'
end
def uploadFile
    post = DataFile.save(params[:upload])
    render :text => "File has been uploaded successfully"
end
end

私のモデルファイルは(data_file.rb):

class DataFile < ActiveRecord::Base
    attr_accessor :upload
  def self.save(upload)
    name = upload['datafile'].original_filename
    directory = 'public/data'
    # create the file path
    path = File.join(directory,name)
    # write the file
    File.open(path, "wp") { |f| f.write(upload['datafile'].read)}
  end
end

私のビューファイルは(uploadfile.html.erb)です:

<h1>File Upload</h1>
<%= form_tag({:action => 'uploadFile'}, :multipart => true) do %>
<p><label for="upload_file">Select File</label>
<%= file_field 'upload', 'datafile' %></p>
<%= submit_tag "Upload" %>
<% end %>

画像をアップロードしようとすると、モデルファイルで「無効なアクセスモードwp」エラーが発生します。モデルファイルでFile.open(path、 "wp")をFile.open(path、 "w")に変更すると、エラー「 '\ x89'がASCII-8BITからUTF-8になります」が表示されます。 .txtファイルの場合、正常に動作します。私はRuby 1.9.3およびRails 3.2.6

19

例えば、私はRailsも!

Rails 3.1で動作します

私のコード:

Routes
resources :images do
      collection { post :upload_image }
    end

コントローラ

class ImagesController < ApplicationController
  def index
    @car = Car.find(params[:car_id])
    @images = @car.images.order("order_id")
  end

  def upload_image   
    DataFile.save_file(params[:upload])
    redirect_to images_path(:car_id => params[:car_id])
  end

Index.html.erbを表示

<h1>File Upload</h1>
  <%= form_tag({:action => 'upload_image', :car_id => @car.id}, :multipart => true) do %>
    <p><label for="upload_file">Select File</label>
    <%= file_field 'upload', 'datafile' %></p>
    <%= submit_tag "Upload" %>
  <% end %>

  <% @images.each do |image| %>
     <%= image.id %><br/>
     <%= image.name %>
  <% end %>

モデル

class DataFile < ActiveRecord::Base
    attr_accessor :upload

  def self.save_file(upload)   

    file_name = upload['datafile'].original_filename  if  (upload['datafile'] !='')    
    file = upload['datafile'].read    

    file_type = file_name.split('.').last
    new_name_file = Time.now.to_i
    name_folder = new_name_file
    new_file_name_with_type = "#{new_name_file}." + file_type

    image_root = "#{Rails_CAR_IMAGES}"


    Dir.mkdir(image_root + "#{name_folder}");
      File.open(image_root + "#{name_folder}/" + new_file_name_with_type, "wb")  do |f|  
        f.write(file) 
      end

  end
end
8
user1466717

この問題の理由は、エンコードの問題です。 ASCII-8BITモードでファイルを読み取り、UTF-8でファイルを書き込んでいるようです。つまり、変換が必要です。また、ASCII-8BITからUTF-8への変換は簡単ではありません。または、ファイルの読み取りと書き込みの両方にバイナリモードを指定できます。

upload_file = File.new(<original file>, "rb").read

そして

File.open(<final uploaded file>, "wb") {|f| f.write(upload_file) }
3
Kashyap

別の優れたオプションは carrierwave です。これはインストールが非常に簡単で、githubのガイドで数分で起動して実行できます。 gemfileに追加してからbundle installを実行します

題材にも良い railscast があります

2
Anconia

「wp」の代わりに「wb」を使用します。できます

File.open(path, "wb") { |f| f.write(upload['datafile'].read)}
2
flyinrhyno