前提・実現したいこと
初学者です。Ruby on Rails5.2.4.2を使用し、こちらを参考にして掲示板を作成しております。
スレッドのトピックスと、カテゴリを紐づけるために、TopicCategoryRelationという中間テーブルを作成しました。
複数カテゴリが付与可能な状態で、form_withを使用し、コントローラでparamsの制限も記述したのですが、下記エラーで前に進めない状態です。
初歩的な問題かもしれませんが、ご教示いただけると嬉しいです。
発生している問題・エラーメッセージ
ターミナル上でのエラー文
Started POST "/topics/create" for ::1 at 2020-03-29 16:06:13 +0900 Processing by TopicsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"S1AKhFNNuBbJAUzoxfNLDNYKZ1nR7JSaqU5nCQShD04bvwg+pSivdrl+J5U3Q58Ajp6QP1EqsJv0yksicJvgAg==", "topic"=>{"title"=>"テスト1", "category_ids"=>["", "0", "1"]}, "commit"=>"トピックス作成"} Completed 400 Bad Request in 1ms (ActiveRecord: 0.0ms) ActionController::ParameterMissing (param is missing or the value is empty: topics): app/controllers/topics_controller.rb:18:in `topic_params' app/controllers/topics_controller.rb:12:in `create'
localhost:3000 ブラウザのエラー文
ActionController::ParameterMissing in TopicsController#create param is missing or the value is empty: topicswhere line #17 raised: Extracted source (around line #18): 16 <%= c.label do %> 17 def topic_params 18 params.require(:topics).permit(:title, {:category_ids => []}) 19 end 20 end
該当のソースコード
routes.rb
Rails.application.routes.draw do root 'topics#index' get 'topics/thread/:id' => 'topics#thread', as: :topics_show post 'topics/create' => 'topics#create' end
コントローラ
class TopicsController < ApplicationController def index @topicsAll = Topic.all @topics = Topic.new @topics.topic_category_relations.build end def thread end def create @topics = Topic.create(topic_params) @topics.save redirect_to ("/topics/thread/{@topics.id}") end def topic_params params.require(:topics).permit(:title, {:category_ids => []}) end end
index.html.erb(トップページ)
<h1>トピック一覧</h1> <ul> <% @topicsAll.each do |topic| %> <li> <%= link_to topic.title, topics_thread_path(topic.id) %> <% topic.topic_category_relations.each do |tcr| %> <%= tcr.category.category_name %> <% end%> </li> <% end %> </ul> <h1>トピック新規登録</h1> <%= form_with model: @topics, url: {controller: 'topics', action: 'create' }, local: true do |f| %> <%= f.label :title, 'トピックスタイトル' %> <%= f.text_field :title %> <p> <%= f.label 'カテゴリ' %> <%# 存在するカテゴリの数だけチェックボックスを作成 %> <%= f.collection_check_boxes(:category_ids, Category.all, :id, :category_name) do |c| %> <%= c.check_box + c.text%> <% end %> </p> <%= f.submit 'トピックス作成'%> <% end %>
topicモデル
class Topic < ApplicationRecord has_many :topic_category_relations has_many :categories, through: :topic_category_relations end
categoryモデル
class Category < ApplicationRecord has_many :topic_category_relations has_many :topics, through: :topic_category_relations end
中間テーブルモデル
class TopicCategoryRelation < ApplicationRecord belongs_to :topic belongs_to :category end
schema.rb
create_table "categories", force: :cascade do |t| t.string "category_name" t.datetime "created_at", null: false t.datetime "updated_at", null: false end create_table "topic_category_relations", force: :cascade do |t| t.integer "topic_id" t.integer "category_id" t.datetime "created_at", null: false t.datetime "updated_at", null: false end create_table "topics", force: :cascade do |t| t.string "title" t.datetime "created_at", null: false t.datetime "updated_at", null: false end
試したこと
・topicテーブルに値を1つ作成
・categoryテーブルに値を3つ作成
・ローカルサーバー再起動
・index.html.erbの下記部分の、{:category_ids => []}をcategory_ids: []という記述に変えましたが、変化なし。
params.require(:topics).permit(:title, {:category_ids => []})
モデルの定義に問題がありそうですが、なかなか見当がつかないので、ご教示いただけると嬉しいです。
補足情報(FW/ツールのバージョンなど)
Ruby: 2.5.0
Rails: 5.2.4.2
OS: MacOS
IDE: VSCode
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/03/29 10:10 編集
2020/03/29 10:10
2020/03/29 10:11