前提・実現したいこと
railsでQandAサイトのようなものを作っています。最初にQuestionとAnswerの部分を作り終えて、Userモデルを加えたいと思うのですが、ルーティングをどうしていいかわからず、困っています。
通常、QandAサイトの構成ではどのようなルーティングになるのか教えていただけると幸いです。
該当のソースコード
現在のルーティングです。
routes.rb
Rails.application.routes.draw do root 'questions#index' resources :questions do resources :answers end # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html end
routes
1 Prefix Verb URI Pattern Controller#Action 2 root GET / questions#index 3 question_answers GET /questions/:question_id/answers(.:format) answers#index 4 POST /questions/:question_id/answers(.:format) answers#create 5 new_question_answer GET /questions/:question_id/answers/new(.:format) answers#new 6 edit_question_answer GET /questions/:question_id/answers/:id/edit(.:format) answers#edit 7 question_answer GET /questions/:question_id/answers/:id(.:format) answers#show 8 PATCH /questions/:question_id/answers/:id(.:format) answers#update 9 PUT /questions/:question_id/answers/:id(.:format) answers#update 10 DELETE /questions/:question_id/answers/:id(.:format) answers#destroy 11 questions GET /questions(.:format) questions#index 12 POST /questions(.:format) questions#create 13 new_question GET /questions/new(.:format) questions#new 14 edit_question GET /questions/:id/edit(.:format) questions#edit 15 question GET /questions/:id(.:format) questions#show 16 PATCH /questions/:id(.:format) questions#update 17 PUT /questions/:id(.:format) questions#update 18 DELETE /questions/:id(.:format) questions#destroy 19 rails_service_blob GET /rails/active_storage/blobs/:signed_id/*filename(.:format) active_storage/blobs#show 20rails_blob_representation GET /rails/active_storage/representations/:signed_blob_id/:variation_key/*filename(.:format) active_storage/representations#show 21 rails_disk_service GET /rails/active_storage/disk/:encoded_key/*filename(.:format) active_storage/disk#show 22update_rails_disk_service PUT /rails/active_storage/disk/:encoded_token(.:format) active_storage/disk#update 23 rails_direct_uploads POST /rails/active_storage/direct_uploads(.:format) active_storage/direct_uploads#create
補足情報(FW/ツールのバージョンなど)
windows 10
ruby 2.5.1
rails 5.2.3
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。