railsチュートリアルの第13章のルーティング設定で、
Rails.application.routes.draw do root 'static_pages#home' get '/help', to: 'static_pages#help' get '/about', to: 'static_pages#about' get '/contact', to: 'static_pages#contact' get '/signup', to: 'users#new' get '/login', to: 'sessions#new' post '/login', to: 'sessions#create' delete '/logout', to: 'sessions#destroy' resources :users resources :account_activations, only: [:edit] resources :password_resets, only: [:new, :create, :edit, :update] resources :microposts, only: [:create, :destroy] end
このようにあったのですが、これでやってみると新規登録した時にNo route matches [POST] "/signup"が出てきて登録できません。post '/signup', to: 'users#create'を追加するとうまく動いたんですが、この記述は必要なのでしょうか?
回答1件
あなたの回答
tips
プレビュー