我的rails应用程序存在一些问题。
<% @story.chapters.each do |chapter| %>
<% if round.to_s != chapter.round %>
<% if chosenChapterRound != chapter.round %>
<% maxVotes = 0 %>
<% end %>
<% if chapter.votes.count > maxVotes %>
<% maxVotes = chapter.votes.count %>
<% chosenChapterRound = chapter.round %>
<% chosenChapters[round.to_i] = chapter %>
<% end %>
<% end %>
<% end %>
<% chosenChapters.each do |chosenChapter| %>
<%= chosenChapter %>
<% end %>
输出如下内容:#&lt;章:0x007fa1b8f59888&GT;
我真正想做的是:
<% chosenChapters.each do |chosenChapter| %>
<%= chosenChapter.author %>
<% end %>
但每当我尝试访问selectedChapter中的一个属性时,我会收到以下错误消息:
undefined method `author' for nil:NilClass
我做错了什么?谢谢!
答案 0 :(得分:0)
至少有一个chosenChapters
是nil
。问题可能在以下片段中:
<% maxVotes = chapter.votes.count %>
<% chosenChapterRound = chapter.round %>
<% chosenChapters[round.to_i] = chapter %>