LoginSignup
1
1

More than 5 years have passed since last update.

friendly_idのslugがセットされるタイミングっていつなの

Posted at

にあるように、before_validate である。

before_xxxx でセットし値を使ったslug生成をしたい場合は、

  before_validation :set_xxxx
  extend FriendlyId # extendはもっと上でもいいのでおこのみで
  friendly_id :slug_candidates, use: :slugged

てな感じで

  • before_validationでセットする
  • friendly_id 実行する前に書く

みたいに気を使ってあげる必要がある。

1
1
0

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
1