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?

More than 5 years have passed since last update.

RailsTutorialのversion=4.2#sec-layout_linksにて起きたエラーについてのメモ

Posted at

概要

粛々とチュートリアル進めてたらこうなった

undefined local variable or method `help_path' for #<#<Class:0x00000004d31d88>:0x00000004d16a60>

なにやら定義されていないメソッドとか言われた。
ルーティングの問題かな?と思い調べた結果のメモ

解決策

要するに名前付きルートはそんなに賢いものではなく、ちゃんと定義してあげてねって話だった。
名前付きルートが生成する? /helpは定義されてないわいワレ、と叱られていたらしい。

config/routes.rb
get '/help', to: 'static_pages#help'

これで動いた。

参考

Rails 名前付きルート メモ
上記の記事と書き方違うけど、あまり違いがわからない。。

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