Railsドキュメント

エラーのJSON

適応バージョン

説明

エラーのJSON

使い方

モデル.errors.as_json(オプション=nil)

エラーのJSON

person.errors.as_json
#=> {:name=>["cannot be nil"]}

full_messages

person.errors.as_json(full_messages: true)
#=> {:name=>["name cannot be nil"]}

ソースコード