我的Rails應用程序有一個有興趣和假期HABTM關係的用戶模型。這兩個(興趣和假期)只有一個屬性需要編輯並與用戶相關。這是設置和工作正常。設置Rails模型關聯
我需要創建一個新的模式稱爲friend_birthday這就是包含有關的用戶朋友(和各自的利益)的生日信息。這個模型(friend_birthday)需要有幾個屬性(:name,:gender,:dob和:interests)。
我想上使用的has_many/belongs_to的這一個。用戶有許多friends_birthdays和friends_birthdays belongs_to用戶。
聽起來不錯?我怎麼能實現這個?
謝謝!
你看的has_many:通過? http://guides.rubyonrails.org/association_basics.html – Brett