试图解决这个小问题,我终于让我的多态关联工作了,但现在似乎无法弄清楚一旦保存记录后如何在视图中显示图像。
我的设置
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 %>
任何指针表示赞赏