/ Published in: Rails
I created an array of objects, but I wanted to reuse the array and pull one random object out of it so this is the code that I found thanks to this: http://www.ruby-forum.com/topic/144788
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<% # Seems to work for me. I just set the code to a variable. @array = Model.all(:conditions => "condition_1 = true", :order => "name ASC", :limit => 10) @random_object = @array[rand(@array.length)] %>
URL: http://www.mycollegesandcareers.com