4

ユーザーが「親写真」を定義してグループ化できるようにする自己関連付けモデルがあります。

私のモデル:

class Photo < ActiveRecord::Base

  attr_accessible :image, :parent_photo

  has_attached_file :image, :styles => { :medium => "300x300>", :thumb => "100x100>" }

  validates_attachment :image, 
    :presence => true,
    :size => { :in => 20..2000.kilobytes },
    :content_type => { :content_type => [ 'image/jpeg', 'image/png' ] }

  belongs_to :parent, class_name: "Photo", foreign_key: :parent_photo

  def associated_photos
    Photo.find_by_parent_photo(id)
  end

end

そして私の rails_admin イニシャライザーで:

..

  config.model Photo do

    list do
      field :image
      field :associated_photos     
    end
  end
end

リスト アクションで使用する実際のサムネイルを取得するにはどうすればよいですか?

4

2 に答える 2

9

これは、「フィールド - 出力フォーマット」という見出しの下のwikiで対処されているようです。

このようなものは機能しますか?

config.model Photo do
  list do
    field :image do
      formatted_value do
        bindings[:view].tag(:img, { :src => bindings[:object].image.url }) << value
      end
    field :associated_photos     
  end
end
于 2012-07-26T23:59:59.877 に答える