1
1

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.

【Railsチュートリアル】 NoMethodError in StaticPages#homeが出た時の対処法

Last updated at Posted at 2019-12-21

#エラー発生

Railsチュートリアル第5章の5.1.1ナビゲーションをやってRailsサーバーを再起動すると下記のようなエラーが発生。

NoMethodError in StaticPages#home
undefined method full_title

image.png

#原因
ググってみると下記のサイトを発見。

「Rails Tutorialでrails sエラーで困っています・・・」
https://teratail.com/questions/12510

その回答として
「full_title を app/helper/下のファイルで定義すれば erb ファイル中で参照できると思います。」

試しにapp/helpers/application_helper.rbを見ると中身が空だった。

#対処法
Railsチュートリアル第4章「リスト4.2: full_titleヘルパーを定義する」の中身を書いたらエラーが解決し、無事表示された。このエラーが表示されたら、app/helpers/下を見てみよう。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?