我有2個車型,活動和城市Rails 3個的關係
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
附件`
它的工作原理!謝謝.. HAML代碼爲城市x中的所有活動交易生成一個jQuery內容滑塊。我也有一個活動模型,其活動關係相同。我可以在一個查詢中組合事件和活動,並將輸出存儲在@activity_event_deals中? 非常感謝! – Remco 2012-07-29 11:27:56
你是賴特...我已經找到了解決方案。 – Remco 2012-07-29 11:51:22