Railsでフォロー機能を作っています。
フォロ一、フォロワー一覧を部分テンプレートして各ページのサードバーに表示し、各ユーザにフォロー、フォロー解除ボタンを付けています。
しかしユーザの詳細ページ以外で、フォローしたいユーザーのidが取得できずに、フォローができません。
取得する方法があれば御教授いただきたいです。。。
発生している問題・エラーメッセージ
詳細ページ(@userで対象のユーザが定義されているページ)以外でフォロー機能が使えない
該当のソースコード
ruby
1 2#コントローラー 3class RelationshipsController < ApplicationController 4 def create 5 # binding.pry 6 user = User.find(params[:following_id]) 7 current_user.follow(user) 8 redirect_back(fallback_location: root_path) 9 end 10 11 def destroy 12 user = Relationship.find(params[:id]).following 13 current_user.unfollow(user) 14 redirect_back(fallback_location: root_path) 15 end 16end
ruby
1#フォローフォーム 2= form_with scope: :relationship, url: relationships_path(@user) do |f| 3 = hidden_field_tag :following_id, @user.id 4 = f.submit "フォローする", class: "follow-btn list-btn"
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。