在我的控制器的索引操作:如何構造返回用戶帖子和帖子類別的查詢?
@posts = current_user.posts.process_and_return_posts
在模型:
class Post < ActiveRecord::Base
belongs_to :user
belongs_to :category
def self.process_and_return_posts
# doing some cleanup
# return posts
end
end
在視圖中我將顯示按類別的職位,我不知道我應該怎麼構建查詢和什麼類型集合我想要的職位?
我需要收集包含兩個類別的對象和郵政對象(如視圖遍歷他們時,我會爲了他們)。