LoginSignup
4
6

More than 3 years have passed since last update.

ActionController::UrlGenerationErrorを解決したお話

Posted at

解決したいこと

トップページ作成中にマイページへアクセスしようとした際に
https://gyazo.com/979b656dfec9fe3815acef2cd0582933
こちらのエラーが発生

        %li.Header-nav__listsRight--mypage
          = link_to  "マイページ", user_path


こちらのuser_pathに問題がある模様

user_pathに現在ログイン中のユーザーを取得させればよかった。

解決法

         = link_to  "マイページ", user_path(current_user)

path指定の後に(current_user)をつければ良いとのことでした

4
6
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
4
6