4

所以这是我关于 StackOverflow 的第一个问题。

我正在尝试在 Rails 3.2.3 上实现 Paperclip,在单击“提交”以使用上传的图像创建配置文件后,我得到:

回形针::AdapterRegistry::NoHandlerError in UsersController#update

未找到“Screen Shot 2012-09-01 at 11.03.43 AM.png”的处理程序

我的服务器日志显示,

Paperclip::AdapterRegistry::NoHandlerError(未找到“屏幕截图 2012-09-01 at 11.03.43 AM.png”的处理程序):app/controllers/users_controller.rb:65:in block in update' app/controllers/users_controller.rb:64:inupdate'

在我的用户模型中,我有

attr_accessible :avatar

has_attached_file :avatar, 
        :styles => { 
          :large => "500x500>", 
          :medium => "213x213>", # profile image
          :thumb => "50x50>",
          :smaller => "30x30>" }, 
          :processors => [:cropper],
         # tells paperclip how to crop the image  
        :storage => :s3,
        :s3_credentials => "#{Rails.root}/config/s3.yml", # TODO 
        :path => ":attachment/:id/:style/:basename.:extension",
        :bucket => 'eventsbucket'

无论我是否包含 S3 信息,错误仍然存​​在。在我的迁移中,我有,

class AddAvatarColumnsToUsers < ActiveRecord::Migration
  def self.up
    add_attachment :users, :avatar
  end

  def self.down
    remove_attachment :users, :avatar
  end
end

最后,在我的用户控制器更新操作中,我有

def update
    respond_to do |format|
      if @user.update_attributes(params[:user])
        sign_in @user
        format.html { redirect_to @user, notice: 'Profile Successfully Updated' }
        format.json { head :no_content }
      else
        format.html { render action: "edit" }
        format.json { render json: @user.errors, status: :unprocessable_entity }
      end
   end
end

在我的 Gemfile 中,我有 gem "paperclip"、"~> 3.1.4" (更新:我已经直接从thoughtbot 中提取了 Paperclip 并且问题仍然存在)。我已经运行捆绑安装。我已经运行了 db:migrate。我已阅读此 StackOverflow 条目,但无论我是否包含“multipart => true”,错误仍然存​​在。当我尝试Emerson Lackey Tutorial时,它一直运行到他试图显示“5.times ...”命令的输出的地步。

我有兴趣让 Paperclip 工作并了解“NoHandlerError”是什么以及将来如何避免它。

4

1 回答 1

0

你试过 railscasts 第 134 集吗?

http://railscasts.com/episodes/134-paperclip?view=asciicast

于 2013-04-17T14:01:07.147 回答