14
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

NoMethodErrorの解決方法(備忘録)

Posted at

##NoMethodErrorが発生した時の解決方法
以下の画像は、NoMethodErrorが発生した時のエラー画面である。
https://gyazo.com/c8a64d9bca710f8fdd842fac2fccaefa

##NoMethodErrorとは?

直訳すると、**「メソッドがない」**という意味を表すエラーである。

##NoMethodErrorの原因

「メソッドがない」つまり、メソッドを定義していないことで生じるエラーである。

##NoMethodErrorの解決方法と手順

メソッドを定義すれば、エラーは解決できる。

では、どこにメソッドを定義すればよいか?

メソッドを定義している場所は、コントローラである。そのため、まず、コントローラアクションのコードをみて、メソッドを定義しているかを確認する。

もしも、コントローラにメソッドが定義されていた場合は、コントローラアクションに関連したDB上のテーブルカラムを確認する。カラムがなければ、カラムを追加する。

カラムの追加と削除について
https://qiita.com/azusanakano/items/a2847e4e582b9a627e3a

14
16
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
14
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?