Rails/検証/errors.add
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
&tag(Rails/検証/errors.add);
*目次 [#y30e49e1]
#contents
*関連ページ [#c80510b5]
*参考情報 [#k5f5922e]
*基礎知識 [#w9d005e0]
-検証失敗時にモデルオブジェクトに対しerrors.addを呼び出し...
-これによって画面上のフォームの該当位置をエラー表示できる...
person.errors.add(:name, :blank) # シンボル
person.errors.add(:name, '空白です') # エラーメッセージ
-[[ActiveModel::Errors:https://api.rubyonrails.org/v7.0/c...
add(attribute, type = :invalid, **options)
- :baseを指定すると特別のattributeに結びつかないエラーと...
person.errors.add(:base, :name_or_email_blank,
message: "either name or email must be present")
終了行:
&tag(Rails/検証/errors.add);
*目次 [#y30e49e1]
#contents
*関連ページ [#c80510b5]
*参考情報 [#k5f5922e]
*基礎知識 [#w9d005e0]
-検証失敗時にモデルオブジェクトに対しerrors.addを呼び出し...
-これによって画面上のフォームの該当位置をエラー表示できる...
person.errors.add(:name, :blank) # シンボル
person.errors.add(:name, '空白です') # エラーメッセージ
-[[ActiveModel::Errors:https://api.rubyonrails.org/v7.0/c...
add(attribute, type = :invalid, **options)
- :baseを指定すると特別のattributeに結びつかないエラーと...
person.errors.add(:base, :name_or_email_blank,
message: "either name or email must be present")
ページ名: