投稿時にカテゴリidも一緒に紐付けして保存したいのですが保存されずに困っております。
私の作っているアプリケーションでは投稿確認ページを実装しています。投稿確認ページを通さなかった場合には正常に保存されるのですが、投稿確認ページで投稿submitボタンを押すとカテゴリidが保存されずに投稿詳細ページでも表示されません。
コンソールでは多対多のアソシエーションの確認は取れており謎で困っております。
コンソールで試したことは
v = Post.first v.categories << Category.first [["post_id", 1], ["category_id", 1], ["created_at", "2020-06-06 12:13:59.321134"], ["updated_at", "2020-06-06 12:13:59.321134"]]
このようにコマンドをうちうまく連携が取れていることは確認取れました。
私の中ではposts.contorollerのcreateが臭いと思い色々試行錯誤していたのですがかなり時間を取られていてわかりませんでした。
確認画面に行くときのparameterではcategory_id は確認できています。
Parameters: {"utf8"=>"✓", "authenticity_token"=>"BO9Av67qRxQ2fsVomyXmXkhcJaj2GhZTrHYw4ZEBK85ClO9DSgMgk1XsiQMFUfZpdaSaiJtHljFGzKP6GwJ/oQ==", "post"=>{"area"=>"確認", "station"=>"", "place_name"=>"---", "post_photo"=>#<ActionDispatch::Http::UploadedFile:0x0000555bdfd92e08 @tempfile=#<Tempfile:/tmp/RackMultipart20200606-1-1cnjb96.jpeg>, @original_filename="sample6.jpeg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"post[post_photo]\"; filename=\"sample6.jpeg\"\r\nContent-Type: image/jpeg\r\n">, "shop_name"=>"", "street_address"=>"", "time"=>"", "regular_holiday"=>"", "url"=>"", "**category_ids"=>["", "1"]**}, "commit"=>"投稿する"}
しかしこの後にsubmitを押すとcategory_idsが保存されません。post.createの欄にcategory_idsがないのです。
Post Create (7.6ms) INSERT INTO "posts" ("post_photo", "area", "street_address", "time", "regular_holiday", "url", "user_id", "created_at", "updated_at", "station", "shop_name") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["post_photo", "sample6.jpeg"], ["area", "他フォルニア"], ["street_address", ""], ["time", ""], ["regular_holiday", ""], ["url", ""], ["user_id", 1], ["created_at", "2020-06-06 13:50:21.117132"], ["updated_at", "2020-06-06 13:50:21.117132"], ["station", ""], ["shop_name", ""]]
createのコードは
class PostsController < ApplicationController before_action :authenticate_user! def new @post = Post.new @post.categories.build end def index @post = Post.limit(4).order('created_at DESC') end def create category = Category.find(:category_ids) @post = category.posts.create(post_params) if @post.save redirect_to @post flash[:notice] = "投稿が完了しました。" else render :new end end def show @post = Post.find(params[:id]) end def confirm @post = Post.new(post_params) return if @post.valid? flash.now[:alert] = '入力に不備がありました。' render :new end def back @post = Post.new(post_params) render :new end private def post_params params.require(:post).permit(:post_photo, :post_photo_cache, :place_name, :area, :street_address, :time, :regular_holiday, :url, :station, :shop_name, { :category_ids=> [] }).merge(user_id: current_user.id) end end
テーブル2このように保存したいのですが良い方法をご存知の方はご教示お願いいたします。何日も解決できずくじけそうです。
テーブル1
id | post_id | category_id | created_at | updated_at ----+---------+-------------+------------+------------ (0 rows)
テーブル2
id | post_id | category_id | created_at | updated_at ----+---------+-------------+----------------------------+---------------------------- 1 | 1 | 1 | 2020-06-06 12:13:59.321134 | 2020-06-06 12:13:59.321134
ちなみにcategory_idsはチェックボックスで値を取得しています
new.html.slim = f.collection_check_boxes(:category_ids, Category.all, :id, :name) do |category| .item_tag = category.label do = category.check_box .item-span span = category.text
確認画面はこんな感じです。
confirm.html.slim = form_for :post, url: new_post_path do |f| = f.hidden_field :area = f.hidden_field :station = f.hidden_field :place_name = f.hidden_field :post_photo_cache = f.hidden_field :shop_name = f.hidden_field :street_address = f.hidden_field :time = f.hidden_field :regular_holiday = f.hidden_field :url = f.hidden_field :category_ids div[style="text-align: center;"] = f.submit "入力画面に戻る", class: "btn-back" = form_for :post, url: posts_path do |f| = f.hidden_field :area = f.hidden_field :station = f.hidden_field :place_name = f.hidden_field :post_photo_cache = f.hidden_field :shop_name = f.hidden_field :street_address = f.hidden_field :time = f.hidden_field :regular_holiday = f.hidden_field :url = f.hidden_field :category_ids div[style="text-align: center;"] = f.submit "確認へ進む", class: "btn btn-square"
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2020/06/06 14:58