1

品牌有很多形象是我的联想。图片使用回形针

在 Rails Admin 中,我想在添加品牌时添加图片

class Brand < ActiveRecord:Base
  has_many :images, as=> :imageable
end

class Image < ActiveRecord:Base
  attr_accessor :image_thumb
  attr_accessible :image, :imageable_id, :imageable_type, :image_thumb
  has_attached_file :image, :styles => { :medium => "300x300>", :thumb => "100x100>" }
  belongs_to :imageable, :polymorphic => true
end

但这就是我得到的

在此处输入图像描述

我怎样才能实现我的目标?

4

2 回答 2

2

我需要添加 attr_accessible

class Brand < ActiveRecord::Base
    attr_accessible :name, :images_attributes
    has_many :products
    has_many :images, :as => :imageable
  accepts_nested_attributes_for :images, :allow_destroy => true
end
于 2012-09-13T14:45:07.030 回答
0

解决方案是当您使用acts_as_taggable 时,将下一个代码添加到您的rails_admin.rb 配置文件中:

field :tag_list do
  label "Tag"
end

或“image_list”,取决于您使用的是什么。

于 2013-07-26T13:40:14.187 回答