回答

7

假設你有誰願意多張照片用戶:

class User 
    has_many :photos 
end 

class Photo 
    belongs_to :user 
    has_attached_file :image 
    #or 
    mount :image, ImageUploader 
end 

所以你不要問你的carrierwave或回形針模型有多個文件,而不是有許多回形針車型屬於你的導軌模型。

+0

謝謝,這是有效的。我仍然希望能夠使用Rails Admin一次上傳多個圖像,但現在可以。 – 2012-02-16 13:34:39