导轨 3,JRuby 1.6.7.2
我一直在尝试一些“基本”的东西,只是通过表单上传一个文本文件以便在我的应用程序中处理。我看到的问题是,我得到的只是一个文件名字符串,而不是 StringIO 或 File。
这是表单代码
= form_tag(:controller => "api/#{CURRENT_API_VERSION}/api", :action => 'file', :method=> :post, :multipart => true) do
= label_tag "file"
= file_field_tag "upload[file]"
= submit_tag 'Analyze!'
控制器代码只是给我@upload 作为包含文件名的字符串。
def file
@upload = params[:upload][:file]
render :template => 'api/file.html.haml'
end
在控制器中运行调试器会给我@upload.class = String,它不会响应任何文件或 StringIO 方法,例如读取。