我在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。