Rails 3,J
Ruby 1.6.7.2
我一直在尝试一些“基本”,只需通过一个表单上传单个文本文件,以便在我的应用程序中处理.我看到的问题是,而不是StringIO或文件,我只得到一个文件名的字符串.
这是表单代码
= 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方法,如读取.
解决方法
在这里找到答案原来我只是拧紧form_tag方法调用.您需要分离“url_for”和其他选项,特别是多部分选项的选项.
所以表单的正确代码是:
= form_tag({:controller => "api/#{CURRENT_API_VERSION}/api",:method=> :post},{:multipart => true}) do = label_tag "file" = file_field_tag "upload[file]" = submit_tag 'Analyze!'
感谢Rob Biedenharn五年前在ruby-forum上的回答!
http://www.ruby-forum.com/topic/125637