ケース:feed_items
をviewで表示させる
エラー: undefined method any? for nil:NilClass
なぜか: @feed_items
のfeedがない
=>nil
を返す
=>nilはany?
メソッドを持っていない
=>エラー
どうすればいいか: feed
はtodo
なので、todos_controller
のcreate
メソッドに@feed_items = []
を追加してnilを避ける。
###static_pages_controller.rb
class StaticPagesController < ApplicationController
def home
if signed_in?
@todo = current_user.todos.build
@feed_items = current_user.feed.paginate(page: params[:page])
end
end
end
###User.rb
def feed
# This is preliminary. See "Following users" for the full implementation.
Todo.where("user_id = ?", id)
end
<!--home.html.erb-->
<% if @feed_items.any? %>
<ol class="todos">
<%= render partial: 'shared/feed_item', collection: @feed_items %>
</ol>