私はビュー(.html.erb)で、次のいますルビーオンレール:リストの各項目のレンダリングパーシャル
<% @posts = GetAllPostsFunctions %> (removed for berivity)
<% @posts.each do |post| %>
<%= post.title %>
<%= render :partial => "posts/post_show" %>
<% end %>
部分posts_showは以下があります。
....
<td><%=h @post.title %> </td>
しかし、私は次のエラー
You have a nil object when you didn't expect it!
The error occurred while evaluating nil.title
どれでもアイデアを得ますか?
素晴らしい、ありがとう! – cbrulak