23

我想在 Rails 3.2.8 上使用 tag_form 制作一个简单的文件上传器。
但是当我尝试提交图像文件时,我收到一条

错误消息(当我尝试提交图像文件时)

从 ASCII-8BIT 到 UTF-8 CoursesController#attachment
"\xFF"中的编码::UndefinedConversionError

如果您能帮我解决这个问题,我将不胜感激。
这是我的代码。


应用程序/视图/show.html.erb

<%= form_tag(attachment_course_path, :action=>'attachment', :multipart => true) do %>
<div class="field">
  <%= label_tag :file %>
  <%= file_field_tag :file %>
</div>
<div class="actions">
  <%= submit_tag 'Submit' %>
</div>
<% end %>


应用程序/控制器/courses_controller.rb

def attachment
  t = Time.now.strftime("%Y%m%d%H%M%S")
  uploaded_io = params[:file]
  File.open(Rails.root.join('public', 'upload', uploaded_io.original_filename), 'w') do |file|
    file.write(uploaded_io.read)
  end
end


配置/路由.rb

resources :courses, :only => [ :show ] do
  member do
    post :attachment
  end
end
4

1 回答 1

65

尝试以二进制模式('wb'而不是'w')打开文件:

  ...
  File.open(Rails.root.join('public', 'upload', uploaded_io.original_filename), 'wb') do |file|
    file.write(uploaded_io.read)
  end

Ruby Docs IO 开放模式

于 2012-12-17T07:32:59.627 回答