1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

id == とだけ書いてあるメソッド

Posted at

初めに

疑問に思ったことや上手くいかなかったことのアウトプットをしています。
自分なりの理解でアウトプットしていきます。初学者なので誤りもあると思います。
その際はご指摘いただけると幸いです。

疑問に思ったコード

def own?(ob)
    id == ob&.user_id
end

idとだけ書いてあって、どのidかわからなかった。
このメソッドを例えば

current_user.own?(object)

と使った場合、current_user.id == object&.user_idで比較することになる。
id == object&.user_idとなるわけではない。

調べた結果

idとだけ書かれている場合、使うインスタンスのidがid ==のところに入る。

1
0
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?