・管理者ユーザーでログインし
・一般ユーザー宛の荷物を登録したいのですが
・検索ページから、荷物の新規登録ページにパラメーターを持たせたリンクを持たせてみても
・ログインした管理者と紐付けた状態で登録されてしまいます
admin/baggages_controller.rb
class 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 = current_user.baggages.build(baggage_params) # @baggage = Baggage.new.(user_id: @user.id) @baggage = Baggage.new(baggage_params) if @baggage.save redirect_to pages_show_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( :kind,:storage_period, :code, :user_id )#.merge(user_id: current_user.id) end end
admin/baggages/index.html.haml
= 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, :'q[user_id_eq]' => "#{user.id}")
admin/baggages/new.html.haml
.wrapper .disply = form_for @baggage ,url: admin_baggages_path do |f| .baggage .baggage__box %span 荷物の種類 = f.select :kind, [["なまもの", "なまもの"], ["チルド", "チルド"], ["冷凍", "冷凍"], ["その他", "その他"]], 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.hidden_field :user_id, :value => @q#(params[:id]) = f.submit 'SEND', class: "baggage__send"
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/10/14 14:34 編集
2020/10/14 21:17
2020/10/15 08:34 編集
2020/10/15 08:28
2020/10/15 09:00 編集