Ruby on Rails Wednesday, November 25, 2015

catalog.html.erb fails to display the listings

In catalog.html.erb
<div>
 <table>
 <% @category.descendants.each do |category| %>
  <% category.listings.each do |listing| %>
   <%= listing.title %>
  <% end %>
 <% end %>
 </table>
</div>

In my routes.rb
  get '/store/catalog/:id' => 'store#catalog'

In my store_controller.rb
  def catalog
   @category=Category.find(params[:id])
  end

In category.rb
class Category < ActiveRecord::Base
 acts_as_nested_set
 has_many :listings
end

In listing.rb
class Listing < ActiveRecord::Base
 belongs_to :categories
end


--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/79e55591-573d-42d1-b1be-eae771e11e44%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment