0

我有这个表格用于上传文件:

-# coding: utf-8
- content_for(:body_classes, "body3")
.content
  - form_tag url(:images, :create), :method => :post, :multipart => true do
    = file_field_tag :file
    = submit_tag "Upload"

而这个控制器来处理它:

Fbapp.controllers :images do

  get :new do
    render 'images/new'
  end

  post :create do
    require 'net/ftp'
    file = params[:file]
    ftp = Net::FTP.new('xxx.xxx.xxx.xxx')
    ftp.passive = true
    ftp.login('user','pass')
    ftp.storbinary("STOR " + "original_filename", StringIO.new(file.read), Net::FTP::DEFAULT_BLOCKSIZE)
    ftp.quit
  end
end

每次我尝试上传文件时,我都会收到“内部服务器错误”。我的日志有这个:

NoMethodError - undefined method `read' for #<Hash:0x00000003697780>:

顺便说一下,我正在 Heroku 上尝试这个。我不知道出了什么问题......它似乎对很多人有用,但我除外。

4

1 回答 1

1

你应该使用:

file = params[:file][:tempfile]

我建议检索文件名

name = params[:file][:filename]
于 2013-04-17T23:30:53.980 回答