12

导轨 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 方法,例如读取。

4

1 回答 1

22

在这里找到了答案。原来我只是搞砸了 form_tag 方法调用。您需要将用于“url_for”的选项和其他选项分开,特别是多部分选项。

所以表单的正确代码是:

= 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!'

感谢 Rob Biedenharn 五年前在 ruby​​-forum 上回答这个问题! http://www.ruby-forum.com/topic/125637

于 2012-08-10T05:13:53.807 回答