MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Zugriff auf Unterdokumente auf Rails 3 mit Mongoid

Gelöst. Aash Dhariya hat geholfen, dies in den mongoiden Google-Gruppen zu lösen.

Ich habe reviews_controller.rb geändert :

class ReviewsController < ApplicationController

    def index
    @product = Product.find(params[:product_id])
        @reviews = @product.reviews
    end

end

und app/views/reviews/index.html.erb :

<h1>Reviews</h1>

<% @product = Product.find(params[:product_id]) %>

<table>
  <tr>
    <th>Content</th>
  </tr>

<% @reviews.each do |review| %>
  <tr>
    <td><%= review.content %></td>
  </tr>
<% end %>
</table>

<br />

Jetzt werden die Bewertungen auf einer separaten Seite angezeigt! :)