Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am aware of the advice "fat models / skinny controllers" and "never put logic in the view"; however, it would help me to learn from an example. In the following, what is the best way to rewrite the code so that the query is not in the view?

Model

 class Product < ActiveRecord::Base
   belongs_to :order
 end

 class Order < ActiveRecord::Base
   has_many :products
 end

Controller

 @orders = Order.all

View

 <% @orders.each do |o| %>
 <%= Product.where("order_id = ?", o.id).count %>
 <% end %>
share|improve this question
There's no need to for the snippet you show. – Dave Newton Jun 29 '12 at 14:36

1 Answer

up vote 3 down vote accepted

It depends on exactly what you want to display, but the straightforward option is to take advantage of the associations you've specified:

<% @orders.each do |o| %>
  <%= o.products.count %>
<% end %>

Then in your controller, you can use eager loading to optimize your SQL calls.

@orders = Order.all(:include => :products)
share|improve this answer
It's arguable whether or not that belongs in the controller, though--IMO it depends on a few factors. It might belong in the mapping itself, it might belong in a model class method, etc. – Dave Newton Jun 29 '12 at 14:37
It definitely depends, agreed. – muffinista Jun 29 '12 at 14:55
Interesting, thanks for both of your answers. I was under the impression it would be more cut and dry. Thanks for your help! – diasks2 Jun 29 '12 at 14:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.