createされると思いきや、Did you mean? baggage_pathとエラー文に出るが、そもそもデータベースに保存したいからこれでは困る、といった感じです
admin/baggages/new.html.haml
.wrapper .disply = form_for @baggage 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 => "#{user_session}" = f.hidden_field :user_id = f.submit 'SEND', class: "baggage__send"
admin/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(baggage_params) end end def create # @baggage = current_user.baggages.build(baggage_params) # @baggage = Baggage.new.(user_id: @user.id) # binding.pry @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: user_session.id) end end
解決したのであれば解決方法を記載してください
回答2件
あなたの回答
tips
プレビュー