app/views/articles/show.html.erb
<p>
  <strong>标题:</strong>
  <%= @article.title %>
</p>
<p>
  <strong>内容:</strong>
  <%= @article.text %>
</p>
<br>
<h2>评论</h2>
<%= render @article.comments %>
<br>
app/views/comments/_comment.html.erb
<p>
  <!--想在这里显示留言序号:1,2,3.. 不是comments的:id-->
  <strong>留言<%= ???  %>:</strong>
  <%= comment.commenter %>
</p>
<p>
  <strong>留言内容:</strong>
  <%= comment.body %>
</p>
<%= ???  %>里要填什么?