I am currently learning RoR, and have run into a snag. I have a table
called Games that has several fields, including title, desc, genre,
system, etc. What I am looking to do in a view is create an output
that is grouped by system. For example...
Wii
... Wii Sports
... Metroid Prime 3
Xbox 360
... Halo 3
My first thought was to use nested for loops, looping through each
unique system, and then looping through each game that matches that
system, and while I know how to do this in PHP (using procedural
code), I am struggling with how to contain my iteration objects within
the controller, and access them only in the view.
I think you are not looking for the SQL group by clause, but rather
grouping on the html view. You can do your find to include the
necessary joins from games to system (maybe vice versa?) and then
render a partial that contains the system and a nested partial to list
games.
Not sure if this is the most efficient way, but it works and you get
reusable partials.