我在我的 Rails 3.2.9 应用程序中使用了最新最好的 Mercury 编辑器。
我已经调整了 Image 模型以允许上传到 s3:
has_attached_file :image,
:styles => { :medium => "200x115" },
:storage => :s3,
:s3_protocol => 'https',
:s3_credentials => "#{Rails.root}/config/s3.yml",
:path => ":attachment/:id/:style/:filename",
:url => ":attachment/:id/:style/:filename",
:bucket => 'ps-wifi'
这工作正常。
我试图弄清楚如何允许用户上传多个图像,每个图像具有不同的属性。
例如,上述方法适用于徽标,但我们需要另一个更大的 600 x 350 图像。以前,我有另一个“has_attached_file”,但不确定如何使用 Mercury 实现。