tusbasaのブログ

業務や勉強中に調べたことを自分用にメモするブログ

2022-02-01から1ヶ月間の記事一覧

【rails】scope はnilを返さない

class Post < ApplicationRecord scope :latest_post, ->(user_id) do where(user_id: user_id).last end end Post.latest_post(1) =>すべてのレコードが返る Post.where(user_id: user_id)でnilが返る場合scopeはallを返すような挙動になるので注意。 where…

【rails】バリデーション context 指定方法

save,updateの時はcontextが必要だが、valid?,invalid?の時はシンボルで指定する validates :password, presence: true, on: :change_password user.save(context: :change_password) user.valid?(:change_password) 参考 https://spirits.appirits.com/doru…

【rails】I18 ネストしたモデルの属性名の変更

スラッシュで名前空間を表現する。 config/locales/ja.yml ja: activerecord: attributes: v1/user: name: ユーザー名 参考 https://qiita.com/yutackall/items/9f349101aaefce6043fb