2010-07-23 48 views

回答

1

你可以嘗試使用:通過聲明:

class Comment 
    belongs_to :user 
    has_many :statuses, :through => :user 
end 


class Status 
    belongs_to :user 
    has_many :comments, :through => :user 
end 

和查詢:

@user = User.first.includes(:comments, :statuses) 

@comment = Comment.first.includes(:user, :statuses) 

@statuse = Status.first.includes(:user, :comments) 
+0

感謝您的回覆。但是,我怎樣才能同時查詢狀態和評論? – 2010-07-23 09:34:38

+0

您可以提供有關您的模式的模式詳細信息嗎?另請參閱更新的答案是否有幫助 – fantactuka 2010-07-23 09:38:41

+0

這對您有所幫助。讓我今晚進行一些測試。謝謝哥們。 :) – 2010-07-23 09:43:27

相關問題