前提・実現したいこと
micropostの検索機能の要領で、
自分のユーザーネームを含む投稿も、
自分のhomeの一覧表示に追加しようとしたのですが、できませんでした。
検索機能では、成功しているので、どこが悪いのでしょうか。
発生している問題・エラーメッセージ
no such column: name
該当のソースコード
static_pages cotroller
ruby
1@feed_items = current_user.feed.page(params[:page]).per(10) if logged_in? 2 search = current_user.name 3 @feed_items = @feed_items + Micropost.where(['name LIKE ?', "%#{search}%"]) 4
def feed /user.model
ruby
1def feed 2 Micropost.where("user_id IN (:following_ids) OR user_id = :user_id", 3 following_ids: following_ids, user_id: id) 4 5 end 6
試したこと
+をとったり、
ユーザークラスに書き込んだりしてみました。
情報がたりないかもしれません。その時は教えてください。
回答1件
あなたの回答
tips
プレビュー