我正在尝试使用 CarrierWave 为 Rails 3 中的数据库播种图像,但是我尝试的任何操作似乎都不需要手动上传它们。
pi = ProductImage.new(:product => product)
pi.image = File.open(File.join(Rails.root, 'test.jpg'))
pi.store_image! # tried with and without this
product.product_images << pi
product.save!
有人知道如何使用 CarrierWave 播种吗?