Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找一种使用 Rails Admin 在一个模型上拥有多个附件的简单方法。我已经在使用回形针,但我需要多张图像,而不仅仅是一张。
任何提示/想法/链接?
非常感谢!
奥莱
假设您有一个想要很多照片的用户:
class User has_many :photos end class Photo belongs_to :user has_attached_file :image #or mount :image, ImageUploader end
因此,您不会要求您的carrierwave 或回形针模型有多个文件,而是有许多属于您的rails 模型的回形针模型。