添付ファイルのスタイルが Paperclip のラムダで定義されているポリモーフィック モデルがあります。attachable_id
ここに問題があります:とのような多相プロパティattachable_type
は bothnil
です。ActiveAdminを使用しているため、コントローラーはありません。
私のプロジェクトモデル:
class Project < ActiveRecord::Base
has_many :attachments, as: :attachable, :dependent => :destroy
accepts_nested_attributes_for :attachments, allow_destroy: true
attr_accessible :floors, :intro, :name, :price, :square, :deadline, :is_visible, :attachments_attributes
validates_presence_of :floors, :intro, :name, :price, :square, :deadline
validates_numericality_of :floors, :price, :square
validates_length_of :name, :deadline, maximum: 60
def set_styles
{ thumb: '150x90#', big: '1366x768#' }
end
end
私のアタッチメントモデル:
class Attachment < ActiveRecord::Base
belongs_to :attachable, polymorphic: true
attr_accessible :about, :position, :is_main_image, :is_blueprint, :attachment, :attachment_file_name, :attachable_attributes
accepts_nested_attributes_for :attachable
has_attached_file :attachment, styles: lambda { |a| a.instance.attachable.set_styles }
validates_attachment_presence :attachment
validates_attachment_size :attachment, :less_than => 3.megabytes
end
そして私の見解:
<%= semantic_form_for [:admin, @project], html: { multipart: true } do |f| %>
<%= f.inputs do %>
<%= f.input :is_visible, as: :boolean %>
<% end %>
<%= f.inputs do %>
<%= f.input :name %>
<%= f.input :intro %>
<% end %>
<%= f.inputs do %>
<%= f.input :square %>
<%= f.input :floors %>
<%= f.input :price %>
<%= f.input :deadline %>
<% end %>
<%= f.inputs do %>
<%= f.input :attachments, as: :file, input_html: { multiple: true, name: 'project[attachments_attributes][][attachment]' } %>
<% @project.attachments.each do |a| %>
<div class="image-container-<%= a.id %>">
<%= link_to image_tag(a.attachment.url :thumb), edit_admin_attachment_path(a.id), class: (a.is_main_image ? 'main_image' : 'not_main_image') %>
<%= link_to 'Delete image', delete_attachment_admin_attachment_path(a.id), class: 'button', remote: true, method: :delete %>
</div>
<% end %>
<% end %>
<%= f.actions %>
<% end %>