私は2つのモデル、活動と都市を持っています
class activity
has_many :attachments, :as => :attachable
accepts_nested_attributes_for :attachments
belongs_to city
end
class city
has_many :activties
end
city_controller
@activity_deals = @city.activities.find_all_by_deals(true)
end
都市を見る
- @activity_deals.attachments.each do |a|
= image_tag(a.file.url, :height =>"325px", :width =>"650px" )
= a.description
undefined method
添付ファイルのエラーが表示されます' `