私は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' from ASCII-8BIT to UTF-8" というエラーが発生します。.txt ファイルの場合、問題なく動作します。Ruby 1.9.3 と Rails 3.2.6 を使用しています