我有一个 Rails 3 博客,其中包含文章和评论模型has_many
以及belongs_to
关联。当文章评论大于 3 时,我应该在我的 application.html.erb 视图中看到它,因此我可以将其称为“评论最多”。
<div class="span2">
<%=image_tag ("Lekki_Gardens_new.gif") %>
<br><br>
<b><p>News update</p></b>
<% @articles.first(4).each do |article| %>
<%=image_tag article.avatar_url(:lilthumb).to_s, :class=>"img-polaroid" %><br>
<%= link_to article.name, article%><hr>
<% end %>
</div