0
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?

Rubyよく経験したエラー

Posted at

エラー分を翻訳して一覧表示させています。

Active Record::RecordNotFound
エラー文
Couldn't find Model with 'id'=123
意味
指定されたIDがデータベースに存在しない

NoMethod Error
エラー文
undefined method 'xxx'for nil:NiClass
意味
変数がnilまたはメソッドが未定義である。

Name Error
エラー文
uninitialized constant Model Nmae
意味
クラスが正しく定義されていない

Active Record::Unknown Attribute Error
エラー文
unknown attribute 'xxx'for Model
意味
モデルに存在しないカラムが使用されている

Routing Error
エラー文
No route matches [GET]"/path"
意味
routes.rbに適切なルーティングを設定できていない

Action View::Template::Error
エラー文
undefined local variable or method 'xxx'for
#<#
意味
viewで使用されている変数またはメソッドが未定義である

Syntax Error
エラー文
unexpected keyword_end,expecting end-of-input
意味
括弧やカンマなどの構文間違いがある

ArgumenError
エラー文
wrong number of arguments (given X, expected Y)
意味
メソッドに渡す引数の数が間違っている

Active Record::Migration Error
エラー文
Migrations are pending
意味
未実行のマイグレーションがある

ActiveRecord::Recordlnvalid
エラー文
Validation failed: xxx
意味
データがバリデーションに反して保存に失敗している

Active Controller::ParameterMissing
エラー文
param is missing or the value is empty:xxx
意味
必要なパラメータが送信されていない

Active Controller::UrlGenerationError
エラー文
No route matches{:action=>"xx",:controller=>"xxx"},missing required keys:[:id]
意味
パスの後ろの引数(id)が正しく設定できていない

0
0
1

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
0
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?