我试图弄清楚在输出到视图时如何为我的类的每个实例呈现相同的视图
这是我的例子
我有一个应用程序,您可以在其中记录自己的食谱,并在名为“我的食谱”的区域查看输入的所有食谱。到目前为止,我可以以我希望呈现的样式呈现一个实例的视图
<div class="container">
<div class="row">
<ul class="thumbnails">
<li class="span4">
<div class="thumbnail">
<% @recipes.each do |r| %>
<%= image_tag r.avatar.url(:medium)%>
<h3 class="center"><a href="#"><%= r.dish_name %></a></h3>
<p>Description of dish</p>
</div>
</li>
<% end %>
</ul>
</div>
</div>
在我的控制器中,我有这个
def my_recipes
@recipes = current_user.recipes if current_user.recipes #show recipes if the user has any recipes
end
我如何让每个实例在同一个视图中呈现,即如我在上面指定的/当然这很简单,但今晚无法解决这个问题
谢谢