1
製作遊戲預告片,並在頭版我安排在各自類別方面的遊戲網站,所以我最終會做這個(護欄):多個字符串查詢單個表
def index
@newGames = Game.order("created_at DESC").limit(3)
@casualGames = Game.where("category = 'casual'").limit(9)
@actionGames = Game.where("category = 'action'").limit(8)
@strategyGames = Game.where("category = 'strategy'").limit(9)
@adventureGames = Game.where("category = 'adventure'").limit(8)
@puzzleGames = Game.where("category = 'puzzle'").limit(9)
end
有一種方法來完成同樣的事情,但沒有對黑貂表進行6個單獨的查詢?
感謝