前提・実現したいこと
多対多について学習しています。
qiitaの記事を見ながら学習しているのですが、記事に出てくる引数がどういった意味で使われているのかわかりません。
該当のソースコード
お気に入り機能の作成 多対多
Userモデル Tweetモデル 中間テーブルのFavoriteモデル
ruby
1 2class Favorite < ApplicationRecord 3 belongs_to :user 4 belongs_to :tweet 5end 6-------------------- 7class User < ApplicationRecord 8 # Include default devise modules. Others available are: 9 # :confirmable, :lockable, :timeoutable, :trackable and :omniauthable 10 devise :database_authenticatable, :registerable, 11 :recoverable, :rememberable, :validatable 12 13 has_many :tweets 14 has_many :favorites # 追加 15end 16------------------- 17class Tweet < ApplicationRecord 18 belongs_to :user 19 has_many :favorites # 追加 20end
#分からない部分のコード
ツイートがお気に入りしてあるかどうかの判定したいので、Tweetモデルに以下の記述。
ruby
1"分からない部分のコード" 2 3class Tweet < ApplicationRecord 4 belongs_to :user 5 has_many :favorites 6 7 8 def favorited_by?(user) ←この引数(user)何なのか&どういった意味で使われている?? 9 favorites.where(user_id: user.id).exists? 10 end 11end
ruby
1"分からない部分のコード" 2 3<h1>Tweets#index</h1> 4<p>Find me in app/views/tweets/index.html.erb</p> 5<% @tweets.each do |tweet| %> 6 <hr> 7 <p><span>email: </span><%=link_to tweet.user.email, user_path(tweet.user.id) %></p> 8 <p><span>ツイート内容: </span><%=link_to tweet.body, tweet_path(tweet.id) %></p> 9 <!-- 追加 --> 10 <% if user_signed_in? %> 11 <% if tweet.favorited_by?(current_user) %>←この部分のcurretn_userは何なのか&どういう意味で使わている?? <!-- ログインしているユーザーがファボしたかどうかで分岐 --> 12 <p><span>お気に入り解除: </span><%=link_to tweet.favorites.count, tweet_favorites_path(tweet.id), method: :delete %></p> 13 <% else %> 14 <p><span>お気に入り登録: </span><%=link_to tweet.favorites.count, tweet_favorites_path(tweet.id), method: :post %></p> 15 <% end %> 16 <% else %> 17 <p><span>お気に入り数: </span><%= tweet.favorites.count %></p> 18 <% end %> 19 <!-- ここまで --> 20<% end %>
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。