1

我在第 14 行不断收到 nil:NilClass 的错误 undefined method `comments'。这是有问题的代码。

<li>
  <span class="content"><%= micropost.content %></span>
  <span class="timestamp">
    Posted <%= time_ago_in_words(micropost.created_at) %> ago.
  </span>
  <% if current_user?(micropost.user) %>
    <%= link_to "delete", micropost, method:  :delete,
                                     confirm: "You sure?",
                                     title:   micropost.content %>
  <% end %>

  <h2>Comments</h2>

    <% @micropost.comments.each do |comment| %>
      <p>
        <b>Commenter:</b>
        <%= comment.commenter %>
      </p>

      <p>
        <b>Comment:</b>
        <%= comment.body %>
      </p>
    <% end %>


  <h3>Add a comment:</h3>
  <%= form_for([micropost, micropost.comments.build]) do |f| %>
    <div class="field">
      <%= f.label :commenter %><br />
      <%= f.text_field :commenter %>
    </div>
    <div class="field">
      <%= f.label :body %><br />
      <%= f.text_area :body %>
    </div>
    <div class="actions">
      <%= f.submit %>
    </div>
  <% end %>
</li>

就好像你不能通过一组注释调用循环,因为它是空的。我尝试添加 <% if @micropost.comments.any? $> 在第 13 行,这样如果没有注释,它就不会尝试循环,但是我在第 13 行得到完全相同的错误。我的语法错了吗?

4

2 回答 2

4

替换@micropostmicropost

于 2012-05-23T20:32:29.230 回答
0

是的,每个都迭代一个空数组,它只是不会真正“迭代”,因为它是空的。

于 2012-05-24T00:20:30.680 回答