我正在使用带有 Rails 4 的 Refile。我正在按照他们的教程进行多张图片上传。每个帖子可以有多个图像。我的模型如下所示:
Post.rb:
has_many :images, dependent: :destroy
accepts_attachments_for :images, attachment: :file
图片.rb:
belongs_to :post
attachment :file
我可以上传文件,很好地使用:
<%= f.attachment_field :images_files, multiple: true, direct: true, presigned: true %>
但是当我尝试检索如下图像时:
<%= attachment_image_tag(@post.images, :file, :small) %>
我得到错误:
undefined method file for #<Image::ActiveRecord_Associations_CollectionProxy:0x007fbaf51e8ea0>
如何使用多个图像上传检索带有重新文件的图像?