0

试图解决这个小问题,我终于让我的多态关联工作了,但现在似乎无法弄清楚一旦保存记录后如何在视图中显示图像。

我的设置

class Image < ActiveRecord::Base
belongs_to :imageable, polymorphic: true

attr_accessible :photo
has_attached_file :photo, :styles => { :small_blog => "250x250#", :large_blog => "680x224#", :thumb => "95x95#" }
end

class Post < ActiveRecord::Base

has_many :images, as: :imageable

accepts_nested_attributes_for :images
attr_accessible :comments, :title, :images_attributes

end

所以在我看来,我现在有这个,它抛出未定义的方法“照片”错误

<% @posts.each do |p| %>
<%= image_tag(p.photo.url(:large_blog), :class => 'image') %>
<% end %>

任何指针表示赞赏

4

1 回答 1

2

Post 有很多图片,每张图片都有一张照片。所以它可以是这样的:

<% @posts.each do |p| %> 
  <% p.images.each do |i| %>
    <%= image_tag(i.photo.url(:large_blog), :class => 'image') %>
  <% end %>
<% end %>
于 2013-08-08T10:29:51.543 回答