回形针:: AdapterRegistry :: NoHandlerError

时间:2016-08-11 05:57:14

标签: ruby-on-rails-4 activerecord heroku amazon-s3 paperclip

我最近根据教程创建的Heroku here设置了直接图像上传到我的Amazon S3存储桶。

当我上传文件时,它已成功发送到我的S3存储桶,但是当我尝试保存图像时出现以下错误

    Paperclip::AdapterRegistry::NoHandlerError at /photos
No handler found for "//mys3bucket.s3.amazonaws.com/uploads/3452345aef45845blabla/the file name.fileExtension"

以下是我认为的表格:

<%= bootstrap_form_for @photo, html: { multipart: true, class: 'directUpload', data: { 'form-data' => (@s3_direct_post.fields), 'url' => @s3_direct_post.url, 'host' => URI.parse(@s3_direct_post.url).host } } do |f| %>

    <p>
      <%= f.text_field :title %>
    </p>

    <p>
      <%= f.file_field :image %>
    </p>

    <%= f.submit 'Upload', class: 'btn btn-success' %>

  <% end %>

这是我的控制器中的创建方法:

  def create
    if can? :create, Photo
      @photo = Photo.new(photo_params)
      if @photo.save
        redirect_to photos_path
      else
        render 'new'
      end
    else
      redirect_to root_path
    end
  end

      private

  def photo_params
    params.require(:photo).permit(:image, :title)
  end

  def set_s3_direct_post
    @s3_direct_post = S3_BUCKET.presigned_post(key: "uploads/#{SecureRandom.uuid}/${filename}", success_action_status: '201', acl: 'public-read')
  end

这是我的模特:

    class Photo < ActiveRecord::Base
    has_attached_file :image
    belongs_to :article

    validates :title, presence: true
    validates :image,
        attachment_content_type: { content_type: /\Aimage\/.*\Z/ },
        attachment_size: { less_than: 5.megabytes }

end

这是我的整个repository

据我所知,由于某些原因,Paperclip不知道如何处理URL,但我不知道如何解决这个问题。我尝试在我的数据库中的Photos表中添加一个新列,只是将URL保存到该列。当然,这完全奏效,因为Paperclip没有参与其中。任何帮助将不胜感激。

2 个答案:

答案 0 :(得分:0)

您是否尝试将 s3_host_name 添加到配置中?

像:

localtimes = map(lambda x: x.astimezone(timeZone).isoformat(), dts)

答案 1 :(得分:0)

我觉得我找到了答案。我不认为这是最好的方式,因为我基本上绕过了Paperclip,但此时无论如何。

我将模型和数据库更改为仅接受url字符串而不是附件,其中包含以下代码:

<强> /models/photo.rb

class Photo < ActiveRecord::Base
    belongs_to :article
    validates :title, presence: true
    validates :image_url, presence: true, length: { minimum: 5 }
end

首次迁移

class RemoveAttatchedImageFromPhotos < ActiveRecord::Migration
  def change
    remove_column :photos, :attached_image_file_name
    remove_column :photos, :attached_image_content_type
    remove_column :photos, :attached_image_file_size
    remove_column :photos, :attached_image_updated_at
  end
end

第二次迁移

 class AddImageUrlToPhoto2 < ActiveRecord::Migration
      def change
        add_column :photos, :image_url, :string
      end
    end