1
我有一個Country
其中有許多Communities
其中有許多Attractions
盤點記錄 - 範圍
# Country
has_many :communities
# Community
has_many :attractions
# Attraction
belongs_to :community
我怎樣才能構建一個是從Country
稱爲範圍,這將給我所有的景點,在其社區。
例如@country.all_attractions
嘿Drenmi,該感謝。你能幫我解決'訂單嗎?()'以及?我試圖按照他們的景點來排列社區,例如:@communities ='country asc'.paginate(page:params [:page],per_page:30)' –
@ TheMiniJohn:你想按照景點數量來訂購嗎? – Drenmi
是的。但我找不到如何做到這一點的參考。 –