Paperclip has_attached_file not working with Rails establish_connection

北慕城南 提交于 2019-12-11 04:55:56

问题


I am trying to access images from paperclip using establish_connection.
Here is my code of model article.rb

class Article < ActiveRecord::Base

  if Rails.env.production?
    establish_connection SECONDARY_DB_CONFIG
  else
    establish_connection "article_#{Rails.env}"
  end

    has_many :assets, dependent: :destroy

    accepts_nested_attributes_for :assets
    validates_associated :assets
end

file asset.rb

class Asset < ActiveRecord::Base

  if Rails.env.production?
    establish_connection SECONDARY_DB_CONFIG
  else
    establish_connection "article_#{Rails.env}"
  end

  belongs_to :article, polymorphic: true
    has_attached_file :image, :styles => { :large=> "1200x700",:medium => "800x" }

  validates_attachment_content_type :image, :content_type => ["image/jpg", "image/png", "image/jpeg"]
end

And Code in view

<% Article.all.each do |article| %>
    <div class="project-item col-sm-6 col-md-4 col-lg-3">
        <% if article.assets.length > 0 %>
            <img src="<%= article.assets.last.image.url(:medium) %>" alt="<%=article.name%>" />
        <% end %>
        <div class="hover-title">
            <h2 class="project-title"><%= article.name%></h2>
            <p><%= property.short_desc %></p>
        </div>
    </div>
<% end %>

it throws error like this

undefined method `has_attached_file' for Asset (call 'Asset.connection' to establish a connection):Class


回答1:


You need to install paperclip gem in the existing project, copy and configure AWS S3 information from the project which you need to access.
In Gemfile

# paperclip gem for image manipulation
gem 'paperclip', :git=> 'https://github.com/thoughtbot/paperclip', :ref => '523bd46c768226893f23889079a7aa9c73b57d68'

# aws sdk for uploading at AWS
gem 'aws-sdk', '< 2.0'
gem 's3'

In production.rb

# configuration for amazon s3
  config.paperclip_defaults = {
    :storage => :s3,
    :s3_region=> ENV['AWS_REGION'],
    :s3_credentials => {
      :bucket => ENV['AWS_BUCKET'],
      :access_key_id => ENV['AWS_ACCESS_KEY_ID'],
      :secret_access_key => ENV['AWS_SECRET_ACCESS_KEY']
    }
  }


来源:https://stackoverflow.com/questions/40527219/paperclip-has-attached-file-not-working-with-rails-establish-connection

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!