Solved.Aash Dhariya ने इसे mongoid google समूहों में हल करने में मदद की।
मैंने reviews_controller.rb को बदल दिया है :
class ReviewsController < ApplicationController
def index
@product = Product.find(params[:product_id])
@reviews = @product.reviews
end
end
और 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 />
अब यह एक अलग पेज पर समीक्षाएं दिखा रहा है! :)पी>