前提・実現したいこと
rails 初心者です。
親子関係(1:N)にあるテーブルをrails側に定義していて、json形式のデータを
POSTで送信し、同時登録した際に子テーブル側の任意カラムに値が入らないため、
jsonの作成の仕方がおかしいのか、rails側の定義がおかしいのかわからず困っています。
ruby
1class BlogsController 2 def create 3 @blog = Blog.new(blog_params) 4 @blog.categories.build 5 if @blog.save 6 render json: @blog, status: :created 7 else 8 render json: @blog.errors, status: :unprocessable_entity 9 end 10 end 11 12 def blog_params 13 params.require(:blog).permit(:title, categories_attributes: [:id, :catname]) 14 end 15end
json
1blog: { 2 title: 'ブログのタイトル', 3 categories: [ 4 { 5 catname: '雑学', 6 } 7 ] 8}
上記JsonをPOST送信すると以下のテーブル登録となり、
子テーブル(categories)のcatnameがnullとなります。
sql
1親テーブル(blogs) 2+----+------------------+----------------------------+----------------------------+ 3| id | title | created_at | updated_at | 4+----+------------------+----------------------------+----------------------------+ 5| 14 | ブログのタイトル | 2020-06-06 13:48:35.188443 | 2020-06-06 13:48:35.188443 | 6+----+------------------+----------------------------+----------------------------+ 7子テーブル(categories) 8+----+-------------+---------+----------------------------+----------------------------+ 9| id | blog_id | catname | created_at | updated_at | 10+----+-------------+---------+----------------------------+----------------------------+ 11| 1 | 14 | NULL | 2020-06-06 13:48:35.188443 | 2020-06-06 13:48:35.188443 | 12+----+-------------+---------+----------------------------+----------------------------+
お手数ですが、ご教授いただけると助かります。
よろしくお願いいたします。
あなたの回答
tips
プレビュー