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

More than 3 years have passed since last update.

ネームエラー uninitialized constant NameError

Last updated at Posted at 2021-09-10

お疲れ様です。
今日はこのエラーを解消できたので備忘録として書かせていただきます。

エラー内容

A44277D5-02FD-4CC7-8744-87D79B1F1B3A_1_105_c.jpeg

5D59C0B0-9483-470C-B141-68C054E5022B.png

このエラーで活用させていただきました(ありがとうございます)

しかしながら、、クラス名とファイル名はあってました。

原因

クラスの規則として_を使用してはいけないこと!!

shipping_fee.all,

クラス名として、
shipping_feeは_が使っているからクラス名として成り立たない。

解消法


ShippingFee.all,

アンダーバーを使わない代わりに、
アンダーバーのあとの文字を大文字に変えます!

何時間悩んだんだろうか、、、:baby_tone5:

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