前提・実現したいこと
formから文字列を取得して、それをもとに検索をかけてidを取得し保存を行いたいです。
発生している問題・エラーメッセージ
{"authenticity_token"=>"/TKs6e3qkDuhkSKcfeIrRLvLjQTIDSyp4mKkx/JmEAjfYlulmpasI2nIN9RShVpKAq0LsPMhmBZbGRhz+hTV9Q==", "borrow"=>{"name"=>"Mavic mini"}, "commit"=>"Create Borrow"}
文字列nameの値は取得できているようですが、params[:name]では取得することができません。
該当のソースコード
下のborrow_paramsの部分です
ruby
1class BorrowsController < ApplicationController 2 before_action :set_borrow, only: [:show, :edit, :update, :destroy] 3 4 # GET /borrows 5 # GET /borrows.json 6 def index 7 @borrows = Borrow.all 8 end 9 10 # GET /borrows/1 11 # GET /borrows/1.json 12 def show 13 end 14 15 # GET /borrows/new 16 def new 17 @borrow = Borrow.new 18 end 19 20 # GET /borrows/1/edit 21 def edit 22 end 23 24 # POST /borrows 25 # POST /borrows.json 26 def create 27 @borrow = Borrow.new(borrow_params) 28 29 respond_to do |format| 30 if @borrow.save 31 format.html { redirect_to @borrow, notice: 'Borrow was successfully created.' } 32 format.json { render :show, status: :created, location: @borrow } 33 else 34 format.html { render :new } 35 format.json { render json: @borrow.errors, status: :unprocessable_entity } 36 end 37 end 38 end 39 40 # PATCH/PUT /borrows/1 41 # PATCH/PUT /borrows/1.json 42 def update 43 respond_to do |format| 44 if @borrow.update(borrow_params) 45 format.html { redirect_to @borrow, notice: 'Borrow was successfully updated.' } 46 format.json { render :show, status: :ok, location: @borrow } 47 else 48 format.html { render :edit } 49 format.json { render json: @borrow.errors, status: :unprocessable_entity } 50 end 51 end 52 end 53 54 # DELETE /borrows/1 55 # DELETE /borrows/1.json 56 def destroy 57 @borrow.destroy 58 respond_to do |format| 59 format.html { redirect_to borrows_url, notice: 'Borrow was successfully destroyed.' } 60 format.json { head :no_content } 61 end 62 end 63 64 private 65 # Use callbacks to share common setup or constraints between actions. 66 def set_borrow 67 @borrow = Borrow.find(params[:id]) 68 end 69 70 # Only allow a list of trusted parameters through. 71 def borrow_params 72 equips = Equip.where(name: params[:name]) 73 logger.debug("########################") 74 logger.debug(params[:name]) 75 logger.debug(equips) 76 77 params.require(:borrow).permit(:return_day).merge(equip_id: equips[0].equip.id, group_user_id: $Group_User[0].group.id) 78 end 79end
html
1<%= form_with(model: borrow, local: true) do |form| %> 2 <% if borrow.errors.any? %> 3 <div id="error_explanation"> 4 <h2><%= pluralize(borrow.errors.count, "error") %> prohibited this borrow from being saved:</h2> 5 6 <ul> 7 <% borrow.errors.full_messages.each do |message| %> 8 <li><%= message %></li> 9 <% end %> 10 </ul> 11 </div> 12 <% end %> 13 14 <div class="field"> 15 <%= form.label :name %> 16 <%= form.text_field :name %> 17 </div> 18 19 <div class="actions"> 20 <%= form.submit %> 21 </div> 22<% end %> 23
試したこと
borrow_params内のlogger.debug(params[:name])は何も表示されず、logger.debug(equips)はequips = Equip.where(name: params[:name])のときはActiveRecord_Relation:~ とUnpermitted parameter: :nameと表示され、
params[:name]の部分を具体的な文字列に置き換えた際はActiveRecord_Relation:~ だけ表示されました。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。