gem ransackを使い検索ページでuserのidのパラメーターを渡したlinkを作成、遷移先のnewアクションページにてuser_idと紐付いた状態で、createしたいが、上手くいきません
遷移もとの検索ページ
= search_form_for @search, url: admin_baggages_url do |f|
= f.label :name_cont, "名前を入力してください"
= f.search_field :name_cont
= f.submit "検索"
.table
.thead
%tr
%th= sort_link(@search, :name)#resultさせてる部分とリンク
%th= sort_link(@search, :address)
.tbody
- @users.each do |user|#controllerの「@users = @search.result」検索したものを"返す"
%tr
-# %td= link_to user.name, new_admin_baggage_url(@q, :'q[user_id_eq]' => "#{user.id}")
%td= user.name
%td= user.address
%td= link_to "New", new_admin_baggage_url(q: { user_id_eq: user.id })
遷移先の新規入力ページ
.wrapper
.disply
= form_for @baggage ,url: admin_baggages_path do |f| .baggage .baggage__box %span 荷物の種類 = f.select :type, [["なまもの", "なまもの"], ["チルド", "チルド"], ["冷凍", "冷凍"], ["その他", "その他"]], include_blank: "選択して下さい" .baggage__box %span 保管期限 = f.text_field :storage_period, class: "baggage_text" , placeholder: '例)7' %span 日 .baggage__box %span 追跡番号 = f.text_field :code, class: "baggage_text", placeholder: '123456789012' = f.submit 'SEND', class: "baggage__send"
baggages.controller.rb
class Admin::BaggagesController < ApplicationController
before_action :if_not_admin
before_action :set_baggage, only: [:show, :edit, :destroy]
def index
if current_user.admin?
# @baggages = Baggage.search(params[:search])
@search = User.ransack(params[:q]) #:qは入力したクエリのq
@users = @search.result
end
end
def new
if current_user.admin?
@baggage = Baggage.new
end
end
def create
@baggage = Baggage.new(baggage_params) if @baggage.save redirect_to pages_path(@baggage) else render :new end
end
def edit
end
def destroy
end
def show
end
private
def if_not_admin
redirect_to root_path unless current_user.admin?#管理者ユーザー以外が特定のアクションを実行しようとした場合トップページにリダイレクトされる
end
def set_baggage
@baggage = Baggage.find(params[:id])#edit, show, destroy などのアクションで使用する変数をセットします。
end
def baggage_params
params.require(:baggage).permit(
:type,:storage_period, :code, user_attributes: [:id])#.merge(user_id: current_user.id)
end
end
現状
・パラメーターは新規入力ページに来ている
・user_idの値が生成されない
・controllerで@baggage = Baggage.new(baggage_params)の部分にエラーが出る
あなたの回答
tips
プレビュー