railsを勉強したいと思いローカル環境で動かしてみました。
最初、Homeコントローラーでpostを定義していたのですが、
うまくいかなかったので新たにPostsコントローラーindexアクションを作成しました。
それでもpostに遷移できないので質問させていただきます。
postsのindexには遷移するのですが、なぜpostに遷移しないのかが疑問です。
Homeコントローラーでmypageも定義しましたが、なぜかmypageには遷移できるのでよくわかりません。
よろしくお願いします。
class PostsController < ApplicationController def index end def post end end
class HomeController < ApplicationController def top end def mypage end def alert end end
Rails.application.routes.draw do get '/post', to: "posts#post" get "/top", to: "home#top" get "/mypage", to: "home#mypage" get "/alert", to: "home#alert" # For details on the DSL available within this file, see https://guides.rubyonrails.org/routing.html end
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/17 23:49
2019/12/17 23:54